gpt4 book ai didi

c# - Entity Framework Code First 不会将身份设置为是

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

我有代码优先实现的类,我试图让它创建表,以便将 Id 字段设置为 Identity = yes。不管我做什么,尽管它似乎总是设置为否。

我尝试在 Id 属性上添加 .HasKey 和 HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity),如下所示:

 public class ApplicationDbContext : IdentityDbContext<User, Role, Guid, UserLogin, UserRole, UserClaim>
{
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.HasDefaultSchema("dbo");

modelBuilder.Entity<User>().Map(c =>
{
c.ToTable("User");
c.Property(p => p.Id).HasColumnName("UserId");
c.Properties(p => new
{
p.AccessFailedCount,
p.Email,
p.EmailConfirmed,
p.PasswordHash,
p.PhoneNumber,
p.PhoneNumberConfirmed,
p.TwoFactorEnabled,
p.SecurityStamp,
p.LockoutEnabled,
p.LockoutEndDateUtc,
p.UserName,
p.FirstName,
p.MiddleName,
p.LastName,
p.IsActive,
p.LastLogin,
p.CreatedBy,
p.CreatedOn,
p.LastModifiedBy,
p.LastModifiedOn
});
}).HasKey(c => c.Id);
modelBuilder.Entity<User>().HasMany(c => c.Logins).WithOptional().HasForeignKey(c => c.UserId);
modelBuilder.Entity<User>().HasMany(c => c.Claims).WithOptional().HasForeignKey(c => c.UserId);
modelBuilder.Entity<User>().HasMany(c => c.Roles).WithRequired().HasForeignKey(c => c.UserId);
modelBuilder.Entity<User>().Property(p => p.Id).HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
modelBuilder.Entity<User>().HasKey(p => p.Id);

我还在类中的 Id 属性上设置了 Attribute 为 Identity

    public class User : IdentityUser<Guid, UserLogin, UserRole, UserClaim>, IEntity
{
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<User, Guid> manager, string authenticationType)
{
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, authenticationType);
// Add custom user claims here
return userIdentity;
}
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public override Guid Id { get; set; }
[MaxLength(256)]
public string FirstName { get; set; }
[MaxLength(256)]
public string MiddleName { get; set; }
[MaxLength(256)]
public string LastName { get; set; }
public bool IsActive { get; set; }
public DateTime? LastLogin { get; set; }
public Guid? CreatedBy { get; set; }
public DateTime? CreatedOn { get; set; }
public Guid? LastModifiedBy { get; set; }
public DateTime? LastModifiedOn { get; set; }
}
}

实际Migration中的Up()方法是这样出来的:

CreateTable(
"dbo.User",
c => new
{
**UserId = c.Guid(nullable: false, identity: true),**
FirstName = c.String(maxLength: 256),
MiddleName = c.String(maxLength: 256),
LastName = c.String(maxLength: 256),
IsActive = c.Boolean(nullable: false),
LastLogin = c.DateTime(),
CreatedBy = c.Guid(),
CreatedOn = c.DateTime(),
LastModifiedBy = c.Guid(),
LastModifiedOn = c.DateTime(),
Email = c.String(),
EmailConfirmed = c.Boolean(nullable: false),
PasswordHash = c.String(),
SecurityStamp = c.String(),
PhoneNumber = c.String(),
PhoneNumberConfirmed = c.Boolean(nullable: false),
TwoFactorEnabled = c.Boolean(nullable: false),
LockoutEndDateUtc = c.DateTime(),
LockoutEnabled = c.Boolean(nullable: false),
AccessFailedCount = c.Int(nullable: false),
UserName = c.String(),
})
.PrimaryKey(t => t.UserId);

SQL Server

正如您所见,当脚本运行时,Identity 设置为 No。

最佳答案

关于c# - Entity Framework Code First 不会将身份设置为是,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42560537/

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