I am using following code block to get a result set from my database's stored procedure and it is working perfectly.
IEnumerable<ServiceDetails> results;
using (var myContext = new KsStadEntities())
{
results = myContext.Database.SqlQuery<ServiceDetails>("GetServicePriceDetails @PostalCode, @CustomerTypeRefId, @ServiceRefId", parameterList.ToArray()).ToList();
}
Now I have another result set that need to get it from same stored procedure, I tried other stackoverflow questions and some other articles but couldn't find any solution.
If anyone can suggest me a solution, would be very much appreciate.