I have a webapplication that uses LINQ to connect to a database. The problem is that I Only have 1 database, and I need a several copy's of the tables, 1 copy / client. Is it possible to make linq use a set of tables acording to their prefex ?
Use the same linq with different table prefixes
203 Views Asked by Dutchie At
1
There are 1 best solutions below
Related Questions in LINQ-TO-SQL
- Linq to SQL - SQL join statement with specific return
- DataContext always ReadOnly, even though a primary key exists
- Issue on Mapping inherited class in .Net 4.8 with LINQ to SQL
- # System.NullReferenceException: 'Object reference not set to an instance of an object.'
- ExecuteCommand in data linq query
- Error when adding Linq to Sql class it says "A file with name studentdb.dbml.layout already exist."
- Generating designer.cs code class for a DBML file using Pre build event in Visual Studio 2022
- Linq to SQL ignore loading options
- How to bind different values from a list into another list on the bases of Key using Linq
- Linq to SQL calculate average and count with a join
- Convert from LinqToSQL to Linq2DB
- System.Data.Linq.Mapping.AttributedMetaDataMember High memory consumption
- Linq to SQL use view instead of query
- Linq to SQL tools in Visual studio 2022 Community and Pro
- Error thrown while trying to update linq-to-sql object
Related Questions in PREFIX
- Cannot perform http mock while integration testing flutter
- Compile latest openssl with mingw64 within cygwin on Windows 11 vs install prefix path definition
- Adding a prefix to all output lines of "apt-update && apt-upgrade in BASH?
- Is it possible to use IPv4 prefixes (subnets) as "public IPs" in the network interface of an AWS EC2 instance?
- Input precedence value and stack precedence value
- Detect prefix and/or suffix in python
- Assign attributes to Prefix Property in ListS3 Processor
- Longest common substring with restrictions
- I want to add prefix to all routes in Lavarel
- Convert prefix to infix with minimum number of parentheses
- Coalesce inside an across statement using column name and a prefix
- Create multiple columns with same prefix based on conditions from multiple columns
- How to do SNS filtering with prefix matching on String.Array type message attribute
- How does printf() execute its arguments with prefix and postfix unary operators?
- xsd schema: How to omit namespace prefix in XML instance document
Related Questions in PREFIXES
- MSSQL avoid multiple prefixes by using alias
- How to mapping prefixes to nodes in Jena SDB
- How to add and modify prefix in Java, using String arrays?
- Is there a default operand size in the x86-64 (AMD64) architecture?
- Can't get multiple prefixes to work with discord.js. How can I rewrite this so that it recognizes both prefixes?
- How to subset spark dataframe by prefixes of the column names?
- Generate CSS browser prefixes in separately file
- how do i add prefixes from when the bot was offline. discord.py
- Object name contains more than the maximum prefixes allowed
- Check all the commands prefix with C-c
- Find the sum of consecutive elements efficiently - INOI 2015, Problem 1
- How can I add the same prefix to all instances of a list of words in Notepad++?
- Perspective doesn't work on mozilla firefox?
- Website made on CSS Grid Layout, Prefixes issues on Firefox
- regular/notepad++ expressions
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can drag and drop the same table to the surface of dbml file and rename the newly added table in dbml to anything you want, that way you can have more than on represenation of single table in linq and you can easily implement whatever you want
I hope I understand your problem correctly