Edvido.QueryDesignerCore 5.0.0

dotnet add package Edvido.QueryDesignerCore --version 5.0.0
NuGet\Install-Package Edvido.QueryDesignerCore -Version 5.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Edvido.QueryDesignerCore" Version="5.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Edvido.QueryDesignerCore --version 5.0.0
#r "nuget: Edvido.QueryDesignerCore, 5.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Edvido.QueryDesignerCore as a Cake Addin
#addin nuget:?package=Edvido.QueryDesignerCore&version=5.0.0

// Install Edvido.QueryDesignerCore as a Cake Tool
#tool nuget:?package=Edvido.QueryDesignerCore&version=5.0.0

Edvido.QueryDesigner -- forked from QueryDesigner

NuGet

With QueryDesigner you can create complex IQueryable filters. These filters are built in expression trees, so they can be used in both local collections and integrable queries in Entity Framework or Linq2SQL. The main target of the project is to building a filtering of collection produced outside the .NET environment, for example with JavaScript in ASP.NET project, in a dynamic way.

Install

PM> Install-Package Edvido.QueryDesignerCore

Basic usage

Let's say we have a user entity...

public class User 
{
    public int Id { get; set; }
    public string Name { get; set; }
    public int Age { get; set; }
}

...and all users request.

IQueryable<User> query = dataAccess.MyUsers;

Excellent! Now let's create a filter for them.

It's important that all members of the entities that could be filtered, should be a properties. Let's say that we want get only users which have Id > 0 || (Name == "Alex" && Age> = 21), and then sort them by Name descending and after - ascending by Id.

It turns out this filter:

var filter = new FilterContainer
    {
	Where = new TreeFilter
	{
	    OperatorType = TreeFilterType.Or,
	    Operands = new List<TreeFilter>
	    {
		new TreeFilter
		{
		    Field = "Id",
		    FilterType = WhereFilterType.GreaterThan,
		    Value = 0
		},

		new TreeFilter
		{
		    OperatorType = TreeFilterType.And,
		    Operands = new List<TreeFilter>
		    {
			new TreeFilter
			{
			    Field = "Name",
			    FilterType = WhereFilterType.Equal,
			    Value = "Alex"
			},
			new TreeFilter
			{
			    Field = "Age",
			    FilterType = WhereFilterType.GreaterThanOrEqual,
			    Value = 21
			}
		    }
		}
	    }
	},

	OrderBy = new List<OrderFilter>
	{
	    new OrderFilter
	    {
		Field = "Name",
		Order = OrderFilterType.Desc
	    },

	    new OrderFilter
	    {
		Field = "Id",
	    }
	}
    };

"Where" filter has a tree structure of infinite nesting, and OrderBy endless listing.

Is important: you must construct each filter with only one implementation of a class: either TreeFilter or WhereFilter. That is, use either OperatorType and Operands or Field, FilterType and Value.

Of course, we got quite uncomfortable code for anyone who will use this form, but in JSON format it is very practical:

{  
   "Where":{  
      "OperatorType":"Or",
      "Operands":[  
         {  
            "Field":"Id",
            "FilterType":"GreaterThan",
            "Value":0
         },
         {  
            "OperatorType":"And",
            "Operands":[  
               {  
                  "Field":"Name",
                  "FilterType":"Equal",
                  "Value":"Alex"
               },
               {  
                  "Field":"Age",
                  "FilterType":"GreaterThanOrEqual",
                  "Value":21
               }
            ]
         }
      ]
   },
   "OrderBy":[  
      {  
         "Field":"Name"
      },
      {  
         "Field":"Flag",
         "Order":"Desc"
      }
   ]
}

Now apply filter to fetch the data:

  query = query.Request(filter);

or

  query = query.Where(filter.Where).OrderBy(filter.OrderBy).Skip(filter.Skip).Take(filter.Take);

Complete! By default, the Request Skip and Take methods are not called if you do not set the appropriate fields.

Complex types

Let's extend existing user entity and add another:

public class User 
{
    public int Id { get; set; }
    public string Name { get; set; }
    public int Age { get; set; }
    public IEnumerable<Car> Cars { get; set; }
}

public class Car
{
    public int CarId { get; set; }
    public string Model { get; set; } 
    public int MaxSpeed { get; set; }
}

Now every user can have cars. Why Cars from User is of type IEnumerable, rather than IQueryable? This is for convenience, to all IEnumerable collections is applied AsQueryable method.

Okay, now select users only who have sport cars capable of speeds up to 300 km / hour, for convenience I presented in JSON:

{  
   "Where":{  
      "Field":"Cars.MaxSpeed",
      "FilterType":"GreaterThan",
      "Value":300
   }
}

If we want to complicate the situation a little more, we can select users only who have more than 4 sport cars capable of speeds up to 300 km / hour with model Mercedes.

var filter = new FilterContainer
    {
    	Where = new TreeFilter
	    {
          Field = "Cars",
          FilterType = WhereFilterType.CountGreaterThan,
	      Value = 4,
	      OperandsOfCollections = new TreeFilter
	      {
		    OperatorType = TreeFilterType.And,
		    Operands = new List<TreeFilter>
		    {
		     new TreeFilter
		    	{
			    Field = "MaxSpeed",
			    FilterType = WhereFilterType.GreaterThan,
			    Value = 300
		    	},
			    new TreeFilter
			    {
			    Field = "Model",
			    FilterType = WhereFilterType.Equals,
			    Value = "Mercedes"
		    	}
		     }
		
	        }
	    },
    };

Field supports the appeal to the properties of the members of the entity with unlimited nesting. Similarly works sorting.

Filtering methods

Currently FilterType allows you to filter by the following ways:

  1. Applied to a single element:
  • Equal
  • NotEqual
  • LessThan
  • GreaterThan
  • LessThanOrEqual
  • GreaterThanOrEqual
  • Contains
  • NotContains
  • StartsWith
  • NotStartsWith
  • LengthEquals
  • LengthLessThan
  • LengthGreaterThan
  • LengthGreaterThanOrEqual
  • LengthLessThanOrEqual
  1. Applied to the listed items without using Value:
  • Any
  • NotAny
  • CountEquals
  • CountLessThan
  • CountGreaterThan
  • CountLessThanOrEqual
  • CountGreaterThanOrEqual
  • FirstOrDefaultIsNull
  • FirstOrDefaultNotNull

Entity members

Available types for single member entities, which can be filtered:

  • DateTime
  • TimeSpan
  • bool
  • byte
  • sbyte
  • short
  • ushort
  • int
  • uint
  • long
  • ulong
  • Guid
  • double
  • float
  • decimal
  • char
  • string
  • any enumerations

...and their Nullable versions.

##Additional Information When building a filter using Where TreeFilter, inherited from WhereFilter. When OperatorType property is equal to None, the expression of the designer refers to the fields of implementation WhereFilter, otherwise Operands to the collection. It allows you to build any nesting filters.

If you notice any errors or have any suggestions - please let me know. Thank you!

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.0 483 8/8/2020
4.0.0 578 7/31/2020

Added 7 new filter types with names LengthEquals,LengthLessThan,LengthGreaterThan,LengthGreaterThanOrEqual,,LengthLessThanOrEqual,FirstOrDefaultIsNull,FirstOrDefaultNotNull