以弱类型方式访问 Entity Framework V4 属性
我试图确定是否有一种方法以弱类型方式访问实体框架实体属性。
我不是以这种方式访问描述属性: myEntity.Description
我真的很想使用索引器访问它: myEntity["Description"]
我已经查看了对象模型。 ObjectContext.Translate<>() 方法采用 DbDataReader,但我还没有找到访问 DbDataReader、DataRow 等的方法...
任何帮助将不胜感激。
谢谢, ...马克
I am trying to determine if there is a way to access entity framework entity properties in a weakly typed fashion.
Instead of accessing the description property this way: myEntity.Description
I would really like to access it using an indexer: myEntity["Description"]
I have looked at the object model. The ObjectContext.Translate<>() method takes a DbDataReader but I have not found a way to access the DbDataReader, DataRow, etc...
Any help would be greatly appreciated.
Thanks,
...Marc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以扩展 T4 模板并为您完成。您可以通过反射(慢,坏)来完成此操作,也可以使用带有
switch
的愚蠢(但快速)方法。You can extend T4 template and to do it for you. You can either do it by reflection (slow, bad) or use silly (but fast) approach with
switch
.您可以使用 EntityClient 将结果作为 EntityDataReader 进行流式传输,顾名思义,EntityDataReader 是 DbDataReader 的实现。
You can use EntityClient which streams results as an EntityDataReader which as the name suggests is an implementation of DbDataReader.