如何制作实体表列表

发布于 2024-12-15 10:02:12 字数 300 浏览 0 评论 0原文

如何在数据库上下文中创建实体表列表? 我想做这样的事情:

    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜光 2024-12-22 10:02:12

我也不确定我是否理解你的问题,但如果你只是在寻找类型信息,并且你有一个派生自 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 the DbSet<T> properties.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文