I am working with a system that has many stored procedures that need to be displayed. Creating entities for each of my objects is not practical.
Is it possible and
Yes it can easily be done like this:
var table = new DataTable(); using (var ctx = new SomeContext()) { var cmd = ctx.Database.Connection.CreateCommand(); cmd.CommandText = "Select Col1, Col2 from SomeTable"; cmd.Connection.Open(); table.Load(cmd.ExecuteReader()); }