使用具有不同表前缀的相同 linq
我有一个使用 LINQ 连接到数据库的 Web 应用程序。 问题是我只有 1 个数据库,并且我需要多个表副本,1 个副本/客户端。是否可以让 linq 根据其前缀使用一组表?
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 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将同一个表拖放到 dbml 文件的表面,并将 dbml 中新添加的表重命名为您想要的任何内容,这样您就可以拥有比 linq 中单个表的表示更多的内容,并且您可以轻松实现您想要的任何
内容希望我正确理解你的问题
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