I\'ve been experiementing with using WCF and have written a WCF Service to provide the backend for a web site. I\'ve encountered a problem when it comes to implementing server-side paging as all the e
To access OData on Windows Phone you do this: // Declare the data service objects and URIs. NorthwindEntities context;
I have a database view which I publish to other systems using WCF data services. The middle layer between the database and the WCF Data Services is built upon Entity Framework 4.1
Using WCF Data Services I am using a data model that contains entities with names specific to the model. I would like to expose them through Odata but with different names.
I set up a WCF Data Service http://localhost:65432/YeagerTechWcfService.svc and when I run it, I get the expected output below:
I need to aggreate some data of my wcf data service in order do something like a \"monthly report\". Afaik aggregation is not possible via the odata protocol. I guess I have to implement my own WebGet
I have WCF Data service on top of EF (old-fashioned edmx; not code-first) that has millions of rows of data. I am restricting result set to 500 rows. So far, so good!
I\'m implementing a custom data provider, I have gotten it to the point that it returns data and can be filtered, but am having some trouble getting relationships to work.
Say I have the following query OData Linq Query (run against http://odata.netflix.com/v2/Catalog): Genres.Where(x=>x.Name==\"Adventures\")
I have a senario where i have to upload some datas using WCF service, which i was able to do successfully if the uploading content size is less than 1MB but if the uploading content size is greater th