Questions tagged [custom-linq-providers]
20 questions
0
votes
2 answers
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 clean a way to return this data. Given this…

Dave Swersky
- 34,502
- 9
- 78
- 118
0
votes
1 answer
How do I get the query text of the IQueryable instance on which this operator is called?
Implementing a provider for this is not that difficult:
var query = from foo in someContext.Foos
where foo.Bar == "bar" && foo.Gaz > 4
select foo;
But if I chain together two operators like so:
var chained1 =…

Water Cooler v2
- 32,724
- 54
- 166
- 336
0
votes
1 answer
How do you remove OrderBy expression from an ExpressionTree using a ExpressionVisitor?
The Orderby statment is not supported by the Azure Table storage linq provider I have an Expression like
.Where(t => (t.RowKey.CompareTo("U_") > 0)).OrderBy(user => user.UserName)
i'm trying to remove .OrderBy(user => user.UserName) from the…

Madu Alikor
- 2,544
- 4
- 21
- 36
0
votes
3 answers
Library or framework to create custom Linq provider
What libraries or frameworks to create custom Linq provider do you know?
How's you experience? Pros and cons? What's the best?

Alexandr Nikitin
- 7,258
- 2
- 34
- 42
-1
votes
1 answer
C# Linq over dynamic table
i would like to make a linq to sql provider that allow to me to query onto a table that is nor mapped in the datamodel nor known.
I only know a table's alias that i use to query another known table for translation (from the alias to the real table…

Skary
- 1,322
- 1
- 13
- 40