GetTable 相当于 ObjectContext
我以前使用过 DataContext,它有一个 GetTable(type) 方法来一般获取表。示例:
context.GetTable(myObject.GetType());
最近,我的团队决定转而使用 ObjectContext 和实体框架。有没有一种方法可以通过类似于 DataContexts GetTable 方法的实体名称来获取表,而无需指定特定类型?它必须是通用的。
I was previously using a DataContext which had a GetTable(type) method to get tables generically. Example:
context.GetTable(myObject.GetType());
Recently my team decided to switch to using ObjectContext with the Entity Framework. Is there a way to get tables by the entity name similar to DataContexts GetTable method without having to specify a specific type? It has to be generic.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确实有一个非常简单的方法可以做到这一点,如下所示:
现在,如果我创建一个
Person
对象并向其传递通用方法,则“allPeople”下面的变量将是一个IQueryable< /code> 我的数据库中的人员,您可以对其进行迭代。
There is indeed a very simple way to do this, like so:
Now if I create a
Person
object and pass to it the generic method, the variable below 'allPeople' will be anIQueryable
of people from my database which you can iterate though.