为什么我无法在我的 asp.net mvc 应用程序中使用 MVC2 为我的属性分配默认值

发布于 2024-10-24 04:02:54 字数 636 浏览 0 评论 0原文

我的类中有此代码

[MetadataType(typeof(HipaaBenefit_Metadata))]
    public partial class HipaaBenefit
    {
        public class HipaaBenefit_Metadata
        {
            [DefaultValue("")]
            public string TimePeriodQualifierEb06 { get; set; }

            [DefaultValue("")]
            public string NetworkIndicatorEb12 { get; set; }

            [DefaultValue("")]
            public string BenefitAmountEb07 { get; set; }
        }
    }

在我的数据库表中这些列不是空字段。当我尝试将数据从代码隐藏保存到表时,我尝试将这些列值指定为 Empty.String。

但由于某些原因我无法将此 Empty.String 值发送到表中?

我在这段代码中做错了什么吗?如果是这样如何分配默认值?

谢谢

I have this code in my class

[MetadataType(typeof(HipaaBenefit_Metadata))]
    public partial class HipaaBenefit
    {
        public class HipaaBenefit_Metadata
        {
            [DefaultValue("")]
            public string TimePeriodQualifierEb06 { get; set; }

            [DefaultValue("")]
            public string NetworkIndicatorEb12 { get; set; }

            [DefaultValue("")]
            public string BenefitAmountEb07 { get; set; }
        }
    }

In my Database table these columns are not null fields. when I am trying to save the data from codebehid to table I am trying to assign these column values as Empty.String.

But some reasons I am not able to send this Empty.String values to the table?

is that something I am doing wrong in this code? if so how to assign the default values?

Thanks

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

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

发布评论

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

评论(1

红玫瑰 2024-10-31 04:02:54

您是否尝试将默认值设置为 NULL?

[默认值(“空”)]

Did you tryied to set default value as NULL?

[DefaultValue("Null")]

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