实体框架、未映射的属性和动态数据

发布于 2024-08-30 02:20:24 字数 685 浏览 5 评论 0原文

我正在使用实体框架数据模型来驱动动态数据网站,供用户用来更新数据。

其中一个实体包含一个不可为空的字符串属性(描述)。在数据库中,其中一行的描述为空(不是 null,而是空字符串)。当我尝试更新描述时,出现以下验证错误:“此属性不能设置为空值”。 如果我手动更新数据库中的描述,然后编辑属性,它将按预期工作。但是,一旦我将数据库中的描述更改回空字符串,就会发生验证错误。该错误发生在描述的设置器上。

因此,我尝试添加一个名为 CustomDescription 的附加字符串属性,它基本上包装了 Description,使 Description 在实体的元数据中成为 ScaffoldColumn(false),并将新属性添加到实体的元数据中。

    [ScaffoldColumn(true)]
    public string CustomDescription
    {
        get { return this.Description; }
        set {
            if (value == null)
            {
                value = string.Empty;
            }
            this.Description = value;
        }
    }

但是,我需要向此属性添加什么才能使其显示在动态数据站点上?

I'm using an Entity Framework data model to drive a Dynamic Data website for use by users to update data.

One of the entities contains a non-nullable string property (Description). In the database, one of the rows has an empty Description (not null but an empty string). When I try to update the Description I get the following validation error: "This property cannot be set to a null value".
If I manually update the Description in the database and then edit the property, it works as expected. But as soon as I change the Description in the database back to an empty string, the validation error occurs. The error happens on Description's setter.

So I've tried adding an additional string property called CustomDescription which basically wraps Description, made Description a ScaffoldColumn(false) in the entity's metadata and added the new property to the entity's metadata.

    [ScaffoldColumn(true)]
    public string CustomDescription
    {
        get { return this.Description; }
        set {
            if (value == null)
            {
                value = string.Empty;
            }
            this.Description = value;
        }
    }

However what do I need to add to this property in order to get it to display on the dynamic data site?

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

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

发布评论

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

评论(2

朦胧时间 2024-09-06 02:20:24

问题是非空字段中的旧值是空字符串。
默认情况下,框架将其转换为 null。
要修复该错误,只需将以下属性添加到您的字段中:

[DisplayFormat(ConvertEmptyStringToNull = false)]
public object Description { get; set; } 

Problem is that old value was empty string in Non-Nullable field.
By default framework is converting it to null.
To fix the error just add the following attribute to your field:

[DisplayFormat(ConvertEmptyStringToNull = false)]
public object Description { get; set; } 
失退 2024-09-06 02:20:24

在相应的 Metadata 类中,只需像引用实际字段一样引用它:

    [MetadataType(typeof(MyClassMetadata))]
    public partial class MyClass
    {
        [ScaffoldColumn(true)]
        public string CustomString
        {
        return "foo";
        }
    }

public class MyClassMetadata
{

    [Display(Name = "Custom")]
    public object CustomString { get; set; }        
}

In the corresponding Metadata class, just refernce it as you would an actual field:

    [MetadataType(typeof(MyClassMetadata))]
    public partial class MyClass
    {
        [ScaffoldColumn(true)]
        public string CustomString
        {
        return "foo";
        }
    }

public class MyClassMetadata
{

    [Display(Name = "Custom")]
    public object CustomString { get; set; }        
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文