EF4 相当于 NHibernate IUserType

发布于 2024-10-26 11:31:09 字数 141 浏览 0 评论 0原文

我想将 TimeZoneInfo 类型的模型属性映射到数据库中的列。在 NHib 中,我只是制作了一个 IUserType“TimeZoneInfoString”,它来回转换,然后使用 typedef。如何使用 Entity Framework 4.0 完成此类工作?

I want to map a model property of type TimeZoneInfo to a column in the database. In NHib, I just made an IUserType "TimeZoneInfoString" that converted back and forth and then used a typedef. How can I do this type of work using Entity Framework 4.0?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

国粹 2024-11-02 11:31:12

实体框架没有相当于 NHibernate 的用户类型。您必须在实体中为其创建单独的属性,并仅映射字符串属性。有些想法是:

public partial class MyEntity
{
    public TimeZoneInfo TimeZone
    {
        get
        {
            return Parse(TimeZoneInfoString);
        }
        set
        {
            TimeZoneInfoString = value.ToString();
        }
    }
}

这个类是自动生成实体的一部分。 TimeZoneInfoString 是映射到实体中的属性,ParseToString 包含您的转换逻辑。

Entity framework doesn't have equivalent to NHibernate's user types. You must create separate property in your entity for it and map only the string property. Somethink like:

public partial class MyEntity
{
    public TimeZoneInfo TimeZone
    {
        get
        {
            return Parse(TimeZoneInfoString);
        }
        set
        {
            TimeZoneInfoString = value.ToString();
        }
    }
}

Where this class is your partial part to autogenerated entity. TimeZoneInfoString is property mapped in your entity and Parse and ToString contains your conversion logic.

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