MutableIdeas.Web.Linq.Query.Service 1.3.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package MutableIdeas.Web.Linq.Query.Service --version 1.3.1
NuGet\Install-Package MutableIdeas.Web.Linq.Query.Service -Version 1.3.1
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="MutableIdeas.Web.Linq.Query.Service" Version="1.3.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MutableIdeas.Web.Linq.Query.Service --version 1.3.1
#r "nuget: MutableIdeas.Web.Linq.Query.Service, 1.3.1"
#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 MutableIdeas.Web.Linq.Query.Service as a Cake Addin
#addin nuget:?package=MutableIdeas.Web.Linq.Query.Service&version=1.3.1

// Install MutableIdeas.Web.Linq.Query.Service as a Cake Tool
#tool nuget:?package=MutableIdeas.Web.Linq.Query.Service&version=1.3.1

MutableIdeas.Web.Linq.Query.Service

Parses a formatted string and that provides the user a an expression for filtering.

Parses a formatted string that will sort an entity set by its property be acsending or descending order.

Filtering

Format for Filtering

String values

propertyName comparison 'stringValue'

Numeric values

propertyName comparison numericvalue

**Joined Filters **

propertyName comparison 'value' operator propertyName comparison 'value'

Definitions

propertyName - The property name of the entity which to filter. Property names are not case sensitive.

comparison - The type of comparison on the property needed to filter

Valid comparison values are:

  • eq - Equal
  • lt - Less Than
  • lte - Less Than or Equal to
  • ne - Not Equal
  • gt - Greater Than
  • gte - Greater Than or Equal to
  • ct - For string values, contains
  • ctic - For string values, contains ignore case

value - The value of the property you want to filter. String values need to be enclosed by single quotes and need to be URL ESCAPED.

operator

Valid operator values

  • and
  • or

Examples for Filtering

  • name eq 'Red%20Wings' - Entity.Name == "Red Wings"
  • name ne 'Avs' - Entity.Name != "Avs"
  • name ct 'Red' - Entity.Name.Contains("Red")
  • name ctic 'Red' - Entity.Name.ToLower().Contains("red")
  • price gt 20 and price lt 50 - Entity.Price > 20 && Entity.Price < 50
  • price gte 20 and price lte 50 - Entity.Price ⇒ 20 && Entity.Price ⇐ 50
  • name eq 'Red%20Wings' or price eq 5 - Entity.Name == "Red Wings" || Entity.Price == 5

Sorting

###Format for Sorting propertyName sortOrder

Definitions

propertyName - The property name of the entity which to filter. Property names are not case sensitive.

sortOrder (optional) - By default this will be in ascending order

Valid values for sortOrder

  • asc - Ascending order
  • desc - Descending order

Examples for sorting

  • name - default ascending order
  • name desc - sort descending order
  • name asc - sort ascending order

C# Services

QueryExpressionService<T>

Methods

Expression<Func<T, bool>> GetExpression(string filter)

  • filter - From the filters listed above, this will parse the string and create and expression that can be used for filtering.

IQueryable<T> Sort(string sort, IQueryable<T> queryable)

This will sort the entities of the queryable parameter per the sort string.

  • sort - From the sorting string listed above
  • queryable - A queryable entity set

FilterService<T>

Methods

By(string propertyName, string value, FilterType filtertype)

Creates a filter expression by the propertyName, value, and the type of comparison.

And()

Adds the conditional And expression for the next expression.

Or()

Adds the conditional Or expression for the next expression.

Expression<Func<T, bool>> Build() Builds the Expression after all the filter comparisons and operators were added.

Examples

var _filterService = new FilterService<SomeClass>();

_filterService.By("Name", "Red", FilterType.Equals);

_filterService.Or();

_filterService.By("Name", "Avs", FilterType.Equals);

Expression<Func<SomeClass, bool>> expression = _filterService.Build();

** This is incomplete but will be updated **

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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.6 is compatible.  netstandard2.0 was computed.  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 tizen30 was computed.  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
2.4.5 2,073 1/23/2019
2.4.4 813 12/27/2018
2.4.3 686 12/10/2018
2.4.2 703 10/23/2018
2.4.1 982 6/18/2018
2.4.0 923 3/14/2018
2.3.2 882 3/7/2018
2.3.1 930 2/12/2018
2.3.0 881 2/8/2018
2.2.1 1,017 2/2/2018
2.2.0 935 1/19/2018
2.1.6 955 1/11/2018
2.1.5 975 12/19/2017
2.1.4 900 12/17/2017
2.1.3 897 12/15/2017
2.1.2 881 12/15/2017
2.1.1 959 12/14/2017
2.1.0 855 12/12/2017
2.0.3 889 12/12/2017
2.0.2 927 12/12/2017
2.0.1 1,060 12/12/2017
2.0.0 833 12/11/2017
1.6.0 1,089 12/11/2017
1.5.1 894 12/9/2017
1.5.0 963 12/9/2017
1.4.4 1,000 12/6/2017
1.4.3 780 12/6/2017
1.4.2 896 11/29/2017
1.4.1 835 11/19/2017
1.4.0 788 11/19/2017
1.3.1 877 11/12/2017
1.3.0 796 11/12/2017
1.2.0 830 11/11/2017
1.1.0 790 11/6/2017
1.0.4 808 11/6/2017
1.0.3 789 11/6/2017
1.0.2 860 11/6/2017
1.0.1 849 11/5/2017
1.0.0 845 11/5/2017