LinqToQuerystring icon indicating copy to clipboard operation
LinqToQuerystring copied to clipboard

A lightweight subset of oData querystring conventions that works with any IQueryable

Results 33 LinqToQuerystring issues
Sort by recently updated
recently updated
newest added

So for example ``` Func priceMaxFunc = x => x.Price x.Price >= 20; ``` then join Funcs into expression `Expression expression = x => priceMaxFunc(x) && priceMinFunc(x);` and translate to...

I have an IQueryable and i which to filter it but the problem when I use LinqToQuerystring I got this exeption No method 'get_Item' exists on type 'System.Object'. here is...

question

Is there any way to restrict what fields we will allow users to query? If so would you mind directing me to how to properly do this.

The LinqToQuerystring.EntityFramework library doesn't appear to work with EF6. When attempting to use $expand, I would get the following error: Could not load type 'System.Data.Entity.DbExtensions' from assembly 'EntityFramework, Version=6.0.0.0, Culture=neutral,...

enhancement

Hi, I'm having some trouble with using the inlinecount with a child navigation property using projections. Here are the classes: ``` public class Person { public int ID { get;...

I tried different escape sequences, no one work. LinqToQuerystringFilteringSample also don't allow search by apostrophe, crashes with exception. Simple test (nunit) [Test] [TestCase("\'", Result = 1)] [TestCase("\\'", Result = 1)]...

Any chance of adding support for group by so we can perform aggregation using the odata data aggregation extension? http://docs.oasis-open.org/odata/odata-data-aggregation-ext/v4.0/cs01/odata-data-aggregation-ext-v4.0-cs01.html

If a querystring is parsed that contains < > = operators on two strings, the expression parser passes it through unchanged, which results in an error. Underneath, in SQL, strings...

Decoded URL in LinqToQueryableAttribute. This fixes issues with encoded urls. Fixes #36 and #51.

So, this problem potentially has several causes, but it would be easy to fix (for now) by having CompareTo working properly: I've implemented ExpandNode for EF7. It works fine, but...