Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
197 views
in Technique[技术] by (71.8m points)

c# - Column Order EF Core Net 5

I am working with entity framework and NET5, and I am trying to set the column order value in the definition, but when creating the migration and updating the database, the table does not reflect the order that I set. Here the code:

public void Configure(EntityTypeBuilder<ApplicationUser> builder)
    {
        //builder.Ignore(e => e.DomainEvents);
        builder.ToTable("uauser", "sec");
        builder.HasKey(p => p.Id).HasName("pk_uapuser");
        builder.Property(t => t.Id).HasColumnName("uaid").HasAnnotation("Order", 1).IsRequired();
        builder.Property(t => t.CompanyId).HasColumnName("uacompanyid").HasAnnotation("Order", 2).IsRequired();
        builder.Property(t => t.PersonalId).HasColumnName("uapid").HasAnnotation("Order", 3).HasMaxLength(30).IsRequired();
        builder.Property(t => t.Name).HasColumnName("uaname").HasAnnotation("Order", 4).HasMaxLength(50).IsRequired();
    }

Thank you very much for the help!!!.

question from:https://stackoverflow.com/questions/65836542/column-order-ef-core-net-5

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...