以弱类型方式访问 Entity Framework V4 属性

发布于 2024-10-20 08:12:28 字数 292 浏览 1 评论 0原文

我试图确定是否有一种方法以弱类型方式访问实体框架实体属性。

我不是以这种方式访问​​描述属性: 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 技术交流群。

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

发布评论

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

评论(2

倾城月光淡如水﹏ 2024-10-27 08:12:28

您可以扩展 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.

苍风燃霜 2024-10-27 08:12:28

您可以使用 EntityClient 将结果作为 EntityDataReader 进行流式传输,顾名思义,EntityDataReader 是 DbDataReader 的实现。

You can use EntityClient which streams results as an EntityDataReader which as the name suggests is an implementation of DbDataReader.

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