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
- Add additional fields to Linq group by
- How LinqToSql Generates output result of stored procedures
- Querying and mapping complex objects using Linq-to-SQL
- Linq to SQL replace .Any() with .Contains()
- Find All Rows in DataTable Where Column Value is NOT Unique Using Linq Query
- Stored procedure's output parameters not updating
- how to get random rows in linq with last inserted row on top
- Convert or output SSIS package/job to SQL script?
- Entity Framework and Union Statement
- File activation error when dynamically creating .mdf database
- How to insert data into table in linq to sql
- Linq To Sql - Get week day name from date
- What can cause an EntityCommandExecutionException in EntityCommandDefinition.ExecuteStoreCommands?
- How do I abstract and secure the same connection string from many applications centrally?
- Linq to Sql escape WHERE clause
Related Questions in PREFIX
- Modifying Tries code in Java
- Grep string start with . or whitespace
- Determine phone number prefix with Trie in Java
- Java: make prefix tree remember last value that was not null
- Fiddler output has unknown prefix and postfix
- prefix to infix conversion using singly linked list handling double digit and negative digits in C
- Change C programs from using arrays to using linked list
- How to create AppController in a Admin area in CakePHP 3
- Update an XML File With Namespace Prefix
- Bash replace prefix with spaces
- CakeDC Users Plugin
- Copy SRC directory with adding a prefix to all c-library functions
- python etree with xpath and namespaces with prefix
- ? LIKE (column || '%')
- C# textBox Hex only with 0x/h/$ prefix using TextChanged property
Related Questions in PREFIXES
- Generate CSS browser prefixes in separately file
- leading number groups between two numbers
- Do I still have to use all five vendor prefixes for the CSS box-shadow property?
- Are "n" or "ch" prefixes common prefixes when naming int or char variables in C++?
- Can't get multiple prefixes to work with discord.js. How can I rewrite this so that it recognizes both prefixes?
- CakePHP routing a role to a prefix with a different name
- how do i add prefixes from when the bot was offline. discord.py
- Make a set prefix-free
- Repeat prefixes and mandatory prefixes in x86
- Different table prefix for one table?
- Formatting an Integer using ISO-prefixes for kB,MB,GB,... and kiB,MiB,GiB,
- Generate Digital Signature but with a Specific Namespace Prefix ("ds:")
- regular/notepad++ expressions
- Find the sum of consecutive elements efficiently - INOI 2015, Problem 1
- Combining prefixes in SSE
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 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