Tagged Questions
1
vote
1answer
39 views
Design of queryable web based results
I'm trying to accomplish something like a facebook news feed wall, loading N number of results from the overall dataset, starting with the most recent, date descending. When you click “more”, it ...
0
votes
2answers
233 views
How does client filtering work for a WCF IQueryable method?
I am new to WCF and I need help understanding something.
I created a WCF data service that returns DTOs which are mapped from entities by the service. On my service contract interface I have some ...
1
vote
2answers
464 views
WCF Data Services IQueryable First() returns the whole list (verified with Fiddler). Why?
I'm trying out the WCF Data Services in .NET with .FirstOrDefault() on the returned Queryable. But when checking with Fiddler it's still returning the whole set of objects. I have to do something ...
1
vote
1answer
283 views
Passing query expressions over the wire with WCF
I want to implement something like a WCF OData provider but using NetTcpBinding instead of WebHttpBinding / REST. I want the client to be able to write linq queries that are transparently serialized ...
10
votes
3answers
3k views
Expose IQueryable Over WCF Service
I've been learning about IQueryable and lazy loading/deferred execution of queries.
Is it possible to expose this functionality over WCF? I'd like to expose a LINQ-to-SQL service that returns an ...
5
votes
2answers
5k views
IQueryable problems using WCF
I have a quite simple WCF service method which returns an IQueryable, just for testing. Perhaps I got something wrong when trying to understand what IQueryable is designed for. I clearly plan to use ...
1
vote
2answers
828 views
IQueryable Count method takes longer to execute
With a WCF built on top of a DB containing around 200 tables and Entity Framework, it takes lot of time (around 2 mins) to perform login the first time after building the WCF.
Stepping into the code ...
3
votes
3answers
2k views
Silverlight, EDM/LINQ, and WCF Web Service - How to pass collections to Silverlight
What is the proper way to pass an answer (a collection) back to Silverlight?
For example, if I have a service application that sits on top of the Northwind sample database and the service has a ...