Get multiple result set with stored procedure using Entity Framework calculated column
问题 I want to get multiple result sets from a stored procedure using Entity Framework. Result of table get successfully, but when I want to get a Balance column, it could not, any help will be appreciated. Thanks public ViewModel GetTwoResultSetsForUserId(string Date, string FromDate, string ToDate, int userId) { using (var db = new CuumiEntities()) { // Create a SQL command and add parameter var cmd = db.Database.Connection.CreateCommand(); cmd.CommandText = "getTransactionDatewisetesting"; cmd