dynamic-linq-query-builder icon indicating copy to clipboard operation
dynamic-linq-query-builder copied to clipboard

A truly generic and dynamic linq query builder to compliment jQuery QueryBuilder and other dynamic linq query generation needs

Results 16 dynamic-linq-query-builder issues
Sort by recently updated
recently updated
newest added
trafficstars

I have searched for a way to configure plugins, but havent found a way to do so. I stumled upon a commit a few years ago (https://github.com/tghamm/dynamic-linq-query-builder/commit/2285ed710fa4d44a8ef8f9efd9894a19d599003d), where Plugin_config has...

**Description of bug** "not_equal" operator is not working as expected on collections. "equal" operator works fine. Anyone else has faced same issue? Here is working fiddle. https://dotnetfiddle.net/gxMX71

Hi. How can I write such a thing? ```csharp var Orders = new List() { new Order{ OrderId =1, CreationTime = DateTime.Now, ProductProviderType = "DomesticFlight" }, new Order{ OrderId =2,...

Hi , I required support of **All** operator. Consider I have list of integer as input and want to check all the given values available in the list. **Input object,**...

Hi all, how can I execute dynamic query on DynamicObject array? this work (with anonymous object) var quarableList = new[] { new { TypeName = "PROCESS.ITEM.END" } }.ToList().AsQueryable(); var resr...

Very nice library and very useful for making us developers look awesome at our bosses :) Having said that i did face an issue with navigation properties which may be...

For results it would be helpful to specify a quantity limit to be generated as part of the query.

Variable with decimal datatype will not show in the font end filter choices. Work around: When datatype is decimal. set it as double in `List GetDefaultColumnDefinitionsForType`

Good Morning, First, let me start by saying that my use case is certainly non-traditional. So - this question may be beyond the scope of this library - or at...

First of all, thanks for the great library! I'm stumbling over an issue where I cannot set the CultureInfo, as the documentation suggests. My code looks something like that: ```...