如何使用实体框架将字符串映射到 Uri 类型?
我的数据库包含一列字符串类型,表示 URL。 我现在想知道如何使用实体框架将此字符串映射到 Uri 对象。
有任何想法吗?
My database contains a column of type string, that represents a URL. I'm now wondering how its possible to map this string to a Uri object using the Entity Framework.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用带有自定义属性的分部类:
如果需要,您可以在 EF 设计器中将字符串属性设置为私有。 请注意,您不能在 LINQ to 实体中使用这样的自定义属性。
Use a partial class, w/ a custom property:
You can make the string property private in the EF designer, if you want. Note you can't use custom properties like this in LINQ to entities, though.