gpt4 book ai didi

c# - 如何使用代码优先 Entity Framework 设置默认日期

转载 作者:太空宇宙 更新时间:2023-11-03 20:23:10 25 4
gpt4 key购买 nike

我正在尝试使用 Entity Framework 和代码优先方法为最后一个日期 (DateAdded) 属性设置默认值。这是我的代码:

namespace BackOffice.Models
{
public class UsersContext : DbContext
{
public UsersContext()
//: base("DefaultConnection")
: base("ProofPixDB")
{
}

public DbSet<UserProfile> UserProfiles { get; set; }
}

[Table("UserProfile")]
public class UserProfile
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int UserId { get; set; }
public string UserName { get; set; }


//public DateTime DOB { get; set; }
[DataType(DataType.Date)]
public DateTime? DOB { get; set; } //This allows null

[Required]
[DataType(DataType.Date)]
public DateTime DateAdded { get; set; }

}
}

最佳答案

您可以在构造函数中设置它:

public class UserProfile()
{
DateAdded = DateTime.Now;
}

关于c# - 如何使用代码优先 Entity Framework 设置默认日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12224205/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com