In MVC 4 and EF 5 i want to run dynamic query.
var returndata = Context.Database.SqlQuery(Type, strsql, null);
i don\'t know, how many fie
Without knowing anything about the type that is returned, I think you might be out of luck.
If you know what patterns it might fall under, you could use some try { } catch () { }
's on interfaces that match those parameters on your otherwise dynamic query, but that seems like it might be a bit painful.