为什么我无法在我的 asp.net mvc 应用程序中使用 MVC2 为我的属性分配默认值
我的类中有此代码
[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试将默认值设置为 NULL?
[默认值(“空”)]
Did you tryied to set default value as NULL?
[DefaultValue("Null")]