POCO 或自我跟踪实体中未映射的属性
POCO 或 STE 中是否可以有自定义属性。通常,STE 或 POCO 属性名称应与表列名称匹配。那么在STE中可以实现吗?
IE。表有 3 列(Id、Name、DateOfBirth)。实体是否可以有 Age(没有数据库映射的自定义属性)?
问候, 阿南德
Is it possible have custom properties in POCO or STE. as a rule, STE or POCO property names should match table column names. so is it achievable in STE?
ie. Table has 3 columns (Id, Name, DateOfBirth). Whether entity can have Age (custom property without db mapping)?
regards,
Anand
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 POCO 和 STE(由 T4 生成器创建)中拥有自定义非映射属性。您只需将它们添加到实体类的部分即可。自定义属性的限制是它们不能在 linq-to-entities 查询中使用或从 linq 查询填充。
顺便提一句。 POCO 和 STE 的属性可以具有与数据库中的列不同的名称 - 这是 EDMX 为映射属性指定自定义名称的功能之一。
You can have custom non mapped properties in both POCO and STEs (created by T4 generator). You can simply add them to your partial part of entity class. The limitation of custom properties is that they cannot be used in linq-to-entities queries or filled from linq queries.
Btw. properties of POCO and STEs can have different names from columns in database - that is one of EDMX's functionality to specify custom names for mapped properties.