Something like this on EF Core
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<Student>()
.MapToStoredProcedures();
}
EF 6 has this functionality that will auto create stored procedures. I hope there is something similar to EF Core or a work around to achieve Code First Approach.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…