Is there any way to call a stored procedure with a dynamic result set (no of columns) without knowing the exact class model and having to define it up front. Just want to get a dynamic list then loop the rows?
As far as I know I cannot find any examples and not sure this is even possible but would be neat if I could do this...
var query = _db.Database.SqlQuery<????>("EXEC [dbo].[PivotOnMeterReadView]");
var result = query.ToList();