Questions tagged «ef-core-2.1»

21
在System.ComponentModel默认值Attrbute中将DateTime属性的默认值设置为DateTime.Now
有谁知道如何使用System.ComponentModel DefaultValue属性为DateTime属性指定Default值? 例如,我尝试这样: [DefaultValue(typeof(DateTime),DateTime.Now.ToString("yyyy-MM-dd"))] public DateTime DateCreated { get; set; } 并且它期望该值是一个常量表达式。 这是在与ASP.NET动态数据一起使用的上下文中。我不想设置DateCreated列,而只是提供DateTime.Now(如果不存在)。我正在使用实体框架作为数据层 干杯, 安德鲁
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.