我正在使用Entity Framework Core开发Asp.Core应用程序。
我需要从1000000开始的自动增量属性。
我正在尝试
modelBuilder.Entity<Bill>().Property(p => p.Number).HasComputedColumnSql("Id + 1000000");
但收到错误消息
Generated column 'Number' cannot refer to auto-increment column.
如何使用EF Core和MySql进行非主键自动递增属性?