动态表名
我有一个我的程序将查询的数据库。
它有 3 个表,全部具有相同的结构: table1, table2 table3
如何编写一个 linq 查询来查询每个表,并动态指定表名?
除此之外。如果向数据库添加其他表,则此解决方案必须有效。因此,即使当我编写代码时 table4 不存在,它也可能会被添加。
I have a database that my program will query.
it has 3 tables all with the same structure:
table1, table2 table3
How can I write a linq query that will query each of these table, with my dynamically specifying the tablename?
In addition to this. This solution must work if additional tables are added to the database. So even though when I was writing the code table4 did not exist it may get added.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
try this: