如何使用代码优先将降序的ID保存在数据库中?

时间:2019-05-04 10:04:38

标签: sql-server ef-code-first entity-framework-core code-first

我要在表中将ID保存为降序顺序 使用代码优先

但是我不知道如何

我的模特:

public class AccountChangeHistory
    {
        [Key]
        public int Id { get; set; }
        public int CustomerId { get; set; }
        public string Action { get; set; }
        public DateTime DateTime { get; set; }


        [ForeignKey("CustomerId")]
        public virtual Customer Customer { get; set; }
    }

0 个答案:

没有答案