我通过实体框架添加了存储过程以及一些表 我可以在xyzContext.tt下看到表格,但那里没有SP 以及如何检查我的SP是否已加载到项目中
答案 0 :(得分:0)
如果首先使用代码,则可以使用方法MapToStoredProcedures
将SP添加到DbContext。 protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<T>()
.MapToStoredProcedures();
}
答案 1 :(得分:0)