asp.net mvc - Entity Framework DataServiceCollection Load not working -


i have separate projects service , ui.

i have used entity framework fetching , showing data. server returns list of data count 5000.

in ui have done following:

dataservicecollection<entityt> entitycollection = new dataservicecollection<entityt>(); container proxy = new container(uri); var container = new servicereference1.container(uri); entitycollection.load(container.entities); 

the entitycollection count shows 1. issue. url hits function returns list of 5000 records.

please suggest solution it.


Comments

Popular posts from this blog

css - I want to align grid in center -

python - SWIG function not printing output -

oop - Function for all prototypes - Javascript -