I have a stored procedure that returns a dynamic request, e, g, if I pass some value to its id parameter, it returns a dynamic request to me, for example
Select * from someTable tbl where tbl.Id=51
then I execute this query using ExecuteStoreQuery as
string query = container.CreateQuery<string>( "SELECT VALUE DB.Store.GetQuery(@ID) FROM {1}", new System.Data.Objects.ObjectParameter("ID", 51) ).First(); object lists = container.ExecuteStoreQuery<object>(query);
container.ExecuteStoreQuery<object>(query); problem container.ExecuteStoreQuery<object>(query); returns a few lines that I want to get to the list, how can I do this
source share