Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
2k views

Where are some good tutorials on writing a custom LINQ Provider?

I would like to build a custom LINQ Provider. Mostly for learning purposes, but it may be usefull in the future. I've heard it's not a simple thing to do, but... Where are some good tutorials on ...
5
votes
2answers
1k 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 ...
2
votes
2answers
670 views

System.Linq.Expressions.ExpressionVisitor is inaccessible due to its protection level

I'm trying to follow the instructions on Creating an IQueryable LINQ Provider, but when I implement the classes which inherit from ExpressionVisitor as instructed I am told that ExpressionVisitor is ...
2
votes
1answer
52 views

Finding what methods a LINQ provider supports

I just tried to use Contains in an Entity Framework query only to have it fail as this method doesn't exist in EF. However the code compiles which is frustrating. Does anyone know how to find which ...
1
vote
1answer
123 views

Translating Where() to sql

I saw DamienG's article (http://damieng.com/blog/2009/06/24/client-side-properties-and-any-remote-linq-provider) in how to map client properties to sql. i ran throgh this article, and i saw great ...
1
vote
3answers
529 views

Determining scope of a MemberExpressions target

Is there anyone here with experience writing custom Linq providers? What I'm trying to do is tell whether a MemberExpression that is a property on a business object should be included in the SQL, or ...
0
votes
2answers
243 views

Building a dynamic LINQ query

I have a listbox which users can select from a list if Towns, I want to be able to build a LINQ query based on the selected items in the list e.g. Dim ddlTowns As ListBox = ...
0
votes
1answer
82 views

LINQ Provider to RESTful service

I'm writing a custom LINQ provider to a RESTful service. Some of the calls in the service return summary headers, including total number of records, pagesize, and the page of the return. I need ...