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
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();