entity framework - AsQueryable().ToList() not returning any result in C# -
i have implemented odata
web service. in url passing on odata
queries , in controller have used
var obj1 = [dbcontext class object].[dbset].asqueryable();
i want convert obj1
list()
, info manipulation on it.so used
var obj1 = [dbcontext class object].[dbset].asqueryable().tolist();
but not getting response, debugged code, went in long time line. have searched lot solution no luck. please help.
thanks in advance.
c# entity-framework odata
No comments:
Post a Comment