Questions tagged «asp.net-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(如果不存在)。我正在使用实体框架作为数据层 干杯, 安德鲁


8
如何在ASP.NET Core 2.1 + Kestrel中禁用HTTPS?
因此,随着ASP.NET Core 2.1的出现,Kestrel现在自动在HTTP旁边创建一个HTTPS端点,并且默认项目模板已设置为从HTTP重定向到HTTPS(撤消很容易)。 但是我的问题是...如何为我的项目完全禁用HTTPS。我已经阅读了文档,并为HTTPS进行了各种配置设置,但似乎没有什么允许我关闭它并只运行HTTP项目。 我是发疯还是只是想念东西。我希望这非常容易做到。
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.