如何制作实体表列表
如何在数据库上下文中创建实体表列表? 我想做这样的事情:
List<???> ListOfTables=new List<???>;
然后:(
var smth=(from xx in ListOfTables.first()
where xxx.name="aaa"
select play);
每个表都有名称字段)
how can I make a list of Entity Tables in db context?
I want to make something like that:
List<???> ListOfTables=new List<???>;
And later:
var smth=(from xx in ListOfTables.first()
where xxx.name="aaa"
select play);
(each table has name field)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也不确定我是否理解你的问题,但如果你只是在寻找类型信息,并且你有一个派生自
DbContext
的类,你可以简单地反映DbSet;
属性。I'm not sure I understand your question either, but if you're just looking for type information, and you have a class derived from
DbContext
, you can simply reflect on theDbSet<T>
properties.