How to call Stored Procedure in Entity Framework 6 (Code-First)?

前端 未结 21 2049
滥情空心
滥情空心 2020-11-22 05:04

I am very new to Entity Framework 6 and I want to implement stored procedures in my project. I have a stored procedure as follows:

ALTER PROCEDURE [dbo].[ins         


        
21条回答
  •  既然无缘
    2020-11-22 05:59

    Using MySql and Entity framework code first Approach:

    public class Vw_EMIcount
    {
        public int EmiCount { get; set; }
        public string Satus { get; set; }
    }
    
    var result = context.Database.SqlQuery("call EMIStatus('2018-3-01' ,'2019-05-30')").ToList();
    

提交回复
热议问题