如何使用实体框架 4.x 动态选择表?

发布于 2024-12-10 11:02:21 字数 532 浏览 0 评论 0 原文

假设我有一个名为 MyDatabase 的数据库,其中有两个表 - MyTable1MyTable2。使用 Entity Framework 4.x 和 .NET 4 的 Code First 方法,我生成了一个名为 MyDatabaseContext 的上下文,其中包含 MyTable1sMyTable2s

通常,表的访问方式类似于 MyDatabaseContext.Table1s.。在我的数据库中,许多表共享几个公共字段(例如 CreatedOn、ModifiedOn)。我希望能够动态替换表名,以便我可以对任何表执行相同的查询。

我真正想要的(似乎不可用)是类似 MyDatabaseContext[ContextTableName]..

有谁知道是否存在这样的功能来在查询时动态选择表时间。

Suppose I have a database named MyDatabase which has two tables - MyTable1 and MyTable2. Using the Code First approach with Entity Framework 4.x and .NET 4, I have generated a context named MyDatabaseContext which contains MyTable1s and MyTable2s.

Normally, tables are accessed like MyDatabaseContext.Table1s.<Command>. In my database many tables share a couple of common fields (e.g. CreatedOn, ModifiedOn). I would like to to be able to dynamically substitute a table name so I can execute the same query against any table.

What I really want (and which does not seem to be available) is something like MyDatabaseContext[ContextTableName].<Command>.

Does anyone have any idea if such functionality exists to dynamically select a table at query time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

别忘他 2024-12-17 11:02:22

我对每天构建的表有同样的问题,例如:TableName_2014_06_06

最后我只是回到基础知识并使用 SqlConnection ..
我建议你也这样做

i had same issue with tables that were build for each day like: TableName_2014_06_06

In the end i just went back to basics and used SqlConnection ..
I suggest that you do the same

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