如何使用实体框架将字符串映射到 Uri 类型?

发布于 2024-07-09 11:17:22 字数 80 浏览 5 评论 0原文

我的数据库包含一列字符串类型,表示 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 技术交流群。

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

发布评论

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

评论(1

守望孤独 2024-07-16 11:17:22

使用带有自定义属性的分部类:

    public partial class MyClass
    {
        public Uri MyUri
        {
            get
                { return new Uri(StringUriPropertyFromDB); }
        }
    }

如果需要,您可以在 EF 设计器中将字符串属性设置为私有。 请注意,您不能在 LINQ to 实体中使用这样的自定义属性。

Use a partial class, w/ a custom property:

    public partial class MyClass
    {
        public Uri MyUri
        {
            get
                { return new Uri(StringUriPropertyFromDB); }
        }
    }

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.

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