NoRealm.ExpressionLite 0.9.1-pre.1-release

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of NoRealm.ExpressionLite.
dotnet add package NoRealm.ExpressionLite --version 0.9.1-pre.1-release
NuGet\Install-Package NoRealm.ExpressionLite -Version 0.9.1-pre.1-release
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="NoRealm.ExpressionLite" Version="0.9.1-pre.1-release" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NoRealm.ExpressionLite --version 0.9.1-pre.1-release
#r "nuget: NoRealm.ExpressionLite, 0.9.1-pre.1-release"
#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 NoRealm.ExpressionLite as a Cake Addin
#addin nuget:?package=NoRealm.ExpressionLite&version=0.9.1-pre.1-release&prerelease

// Install NoRealm.ExpressionLite as a Cake Tool
#tool nuget:?package=NoRealm.ExpressionLite&version=0.9.1-pre.1-release&prerelease

Expression Lite

Expression Lite is a powerful expression compiler for .NET

it compiles dynamic expressions into some form, the library have two type of predefined forms:

  1. Expression builder: which convert you dynamic expression to System.Linq.Expression.Expression<T> and it is usful for passing it IQueryable reducers.
  2. Delegate: which can be executed to get results directly.

The library support 4 basic data types:

  1. number: which based on .NET decimal data type.
  2. boolean: either true keyword or false keyword.
  3. string: any string between double quotes, also the following escape sequences are supported (\\ \" \n).
  4. date and time: any value based on .NET DateTime data type surrounded by the #.

each data type have a set of allowed operators to act on it, please refer to the docs for more information.

The power of the library comes from interfacing with .NET through identifiers where the following types of identifiers are allowed:

  1. an identifier with plain value from one of the basic data types.
  2. an identifier with a value comes from a property/field in an instance.
  3. an identifier with a value comes from a property/fieled/constant in a static type.
  4. an identifier with a value comes from another string expression.
  5. a lambda expression which get embedded later into the final expression as a part of it.

The compiler will do type checking and validation, and then will optimize the expression before generating the final code.

Examples

The following are some usage exmaples, for more detailed examples please refer to the docs directory.

  1. LINQ Expression Example
var exp = "3*4".ToLinqExpression<decimal>();

This is the simplest form, where you use an expression which don't depend on any external dependencies - i.e. identifiers.

because the library treat all numbers as decimal if you expect from the expression to return a number then you should pass decimal, otherwise you should pass object and the library will wrap the final result in object as following:

var exp = "3*4".ToLinqExpression<object>();
  1. Runtime function Example
var func = "3*4".ToRuntimeMethod<decimal>();
var result = func()

This example is the same as the 1st except that we create a runtime function instead of a LINQ expression. Then we executed the function delegate to get the result.

  1. LINQ Expression with identifiers
var exp = "salary + salary * tax".ToLinqExpression<Employee, decimal>(
	name =>
	{
		if (name == "salary")
			return NameInfo.FromOtherMember<Employee>(e => e.Salary);
		else if (name == "tax")
			return NameInfo.FromOtherMember(() => Employee.TaxRate);
		else
			return null;
	});

class Employee
{
	public const double TaxRate = .2;

	public int Salary;
}

In this example we have an expression which calculate an employee total salary, the input expression have 2 identifiers salary and tax.

This time the method ToLinqExpression takes two types, 1st type is the input type to get values from, 2nd type is the result type.

In this case, the input type is Employee, and the result type is decimal, the method ToLinqExpression expects an input method which resolve identifiers to some value.

As you see the salary maps to an instance member - a property - so we get this member using the generic method NameInfo.FromOtherMember, and the tax maps to constant, that is why we get it by using the non-generic method NameInfo.FromOtherMember.

We can rewrite this example as follow:

var exp = "salary + tax".ToLinqExpression<Employee, decimal>(
	name =>
	{
		if (name == "salary")
			return NameInfo.FromOtherMember<Employee>(e => e.Salary);
		else if (name == "tax")
			return NameInfo.FromStringExpression("salary + tax_rate");
		else if (name == "tax_rate")
			return NameInfo.FromOtherMember(() => Employee.TaxRate);
		else
			return null;
	});

In fact, we can rewrite it again as follow:

var exp = "salary + tax".ToLinqExpression<Employee, decimal>(
	name =>
	{
		if (name == "salary")
			return NameInfo.FromOtherMember<Employee>(e => e.Salary);
		else if (name == "tax")
			return NameInfo.FromLinqExpression<Employee, decimal>(e => e.Salary * (decimal)Employee.TaxRate);
		else
			return null;
	});

All these versions return the excat result and depending in your needs.

  1. Runtime functions with identifiers

You can execute the 3rd example but instead of using ToLinqExpression use ToRuntimeMethod.

// the func is the result of calling ToRuntimeMethod
var result = func(new Employee{Salary = 100});

The class NameInfo have static members to get values from different sources, please see the docs for more details.

License

This library is licensed to under MIT License.

Brought to you by NoRealm

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net5.0

    • No dependencies.

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
0.9.1-pre.1-release 137 4/11/2022