Expressionbuildernetcore
No description available
Install / Use
/learn @yurisouza/ExpressionbuildernetcoreREADME
Lambda Expression Builder
This is not a replacement of LambdaExpressionBuilder. I've just built on top of it; made changes and improvements (in my opinion)
Are you looking for a library that can build lambda expressions easily? Use the Lambda Expression Builder to easily build a filter that you can apply to lists and database queries. You can even use this as a base to allow you to build filters dynamically.
Packed with features; you can save and re-run filters, not have to worry about NULL checks (it's automatic), build complex queries with groups and more!
Features:
- Ability to reference properties by their names
- Ability to reference properties from a property
- Ability to reference properties from list items
- Built-in null-checks
- Built-in XML serialization
- Globalization support
- Group expressions for more complex scenarios
- Match a list of values (i.e. A first name that matches any of: "John", "Jess") See Documentation
What's New: Version 1.2.2
- Added a shorthand function for operations that require no values (i.e.
Operation.IsNull) - Added method to fetch the correct
MatchType, when default is provided - More bug fixes. When one is solved another is found
Release Notes About Version 1.2.1
PLEASE NOTE THIS IS A BREAKING CHANGE I have left this in due to the updates being only a day apart
- Simplified enumerables - To make it easier to type, and easier to read, I have simplified 2 enums. This is the "breaking change" I was refering to.
- Operations & default match-types - Operations now have a default MatchType. This is the match-type that will be called by default.
- Bug fixes and other minor improvements
For a full list of changes and previous revisions, see the Change Log
Suggestions & Issues
Feel free to leave comments, and to place issues, if you find errors or realise there is any missing feature.
How to use it
Let us imagine we have classes like this...
public enum PersonGender
{
Male,
Female
}
public class Person
{
public int Id { get; set; }
public string Name { get; set; }
public PersonGender Gender { get; set; }
public BirthData Birth { get; set; }
public List<Contact> Contacts { get; private set; }
public Company Employer { get; set; }
public class BirthData
{
public DateTime Date { get; set; }
public string Country { get; set; }
}
public class Company {
public string Name { get; set; }
public string Industry { get; set; }
}
}
public enum ContactType
{
Telephone,
Email
}
public class Contact
{
public ContactType Type { get; set; }
public string Value { get; set; }
public string Comments { get; set; }
}
...and we have to build the code behind a form like this one to filter a list of Person objects:

Now, what about being able to do it in a way like this:
var filter = new Filter<Person>();
filter.By("Id", Operation.Between, 2, 4, FilterStatementConnector.And);
filter.By("Contacts[Value]", Operation.EndsWith, "@email.com", default(string), FilterStatementConnector.And);
filter.By("Birth.Country", Operation.IsNotNull, default(string), default(string), FilterStatementConnector.Or);
filter.By("Name", Operation.Contains, " John");
var people = People.Where(filter);
//or like this...
var filter = new Filter<Person>();
filter.By("Id", Operation.Between, 2, 4)
.And.By("Birth.Country", Operation.IsNotNull)
.And.By("Contacts[Value]", Operation.EndsWith, "@email.com")
.Or.By("Name", Operation.Contains, " John ");
var people = People.Where(filter);
So that would generate an expression like this:
People.Where(p => (p.Id >= 2 && p.Id <= 4)
&& (p.Birth != null && p.Birth.Country != null)
&& (p.Contacts != null && p.Contacts.Any(c => c.Value.Trim().ToLower().EndsWith("@email.com")))
|| (p.Name != null && p.Name.Trim().ToLower().Contains("john")));
Conventions
The convention around the properties names is, probably, the heart of this project. It defines the way in which the properties are addressed, how to reference a property, or the property of a property, or even the property of an item in a list property of the type being filtered.
How to address a property:
- Any value property of the type being filtered: just mention its name (e.g.
Id,Name,Gender, etc.) - Any value property of a reference property of the type being filtered: use the "dot notation" (e.g.
Birth.Date,Company.Name, etc.) - Any value property of an item in a list property: mention the name of the list property followed by the name of its property between brackets (e.g.
Contacts[Type],Contacts[Value])
Supported types/operations
The operations are grouped together into logical type groups to simplify the association of a type with an operation:
- Default
- EqualTo
- NotEqualTo
- Text
- Contains
- DoesNotContain
- EndsWith
- EqualTo
- IsEmpty
- IsNotEmpty
- IsNotNull
- IsNotNullNorWhiteSpace
- IsNull
- IsNullOrWhiteSpace
- NotEqualTo
- StartsWith
- Number
- Between
- EqualTo
- GreaterThan
- GreaterThanOrEqualTo
- LessThan
- LessThanOrEqualTo
- NotEqualTo
- Boolean
- EqualTo
- NotEqualTo
- Date
- Between
- EqualTo
- GreaterThan
- GreaterThanOrEqualTo
- LessThan
- LessThanOrEqualTo
- NotEqualTo
This way, when a type is associated with a type group, that type will "inherit" the list of supported operations from its group.
While compiling the filter into a lambda expression, the expression builder will validate if the selected operation is supported by the property's type and throw an exception if it's not. To overcome situations in which you would like to add support to a specific type, you may configure it by adding the following to your config file:
<configuration>
...
<configSections>
<section name="LambdaExpressionBuilder" type="LambdaExpressionBuilder.Configuration.ExpressionBuilderConfig, LambdaExpressionBuilder" />
</configSections>
...
<LambdaExpressionBuilder>
<SupportedTypes>
<add typeGroup="Date" type="System.DateTimeOffset" />
</SupportedTypes>
</LambdaExpressionBuilder>
...
</configuration>
Globalization support
You just need to perform some easy steps to add globalization support to the UI:
- Add a resource file to the project, naming it after the type you'll create your filter to (e.g.
Person.resx); - Add one entry for each property you'd like to globalize following the conventions (previously mentioned), but replacing the dots (
.) and the brackets ([,]) by underscores (_):
Person.resx
Person.pt-BR.resx
- You can globalize the operations on a similar way as well by adding a resources file named
Operations.resx:
Operations.resx
Operations.pt-BR.resx
- For the properties, you'll instantiate a
PropertyCollection:new PropertyCollection(typeof(Person), Resources.Person.ResourceManager). That will give you a collection of objects with three members:
Id: The conventionalised property identifier (previously mentioned)Name: The resources file matching value for the property idInfo: ThePropertyInfoobject for the property
- And for the operations, you have an extension method:
Operation.GreaterThanOrEqualTo.GetDescription(Resources.Operations.ResourceManager).
Note on globalization
Any property or operation not mentioned in the resources files will be replaced by its conventionalised property identifier.
Complex expressions
Complex expressions are handled basically by grouping up filter statements, like in the example below:
var filter = new Filter<Products>();
filter.StartGroup();
filter.StartGroup();
filter.By("Name", Operation.DoesNotContain, "doe", connector: FilterStatementConnector.Or);
filter.StartGroup();
filter.By("Name", Operation.EndsWith, "Doe", connector: FilterStatementConnector.Or);
filter.By("Name", Operation.StartsWith, "Jo", connector: FilterStatementConnector.And);
filter.EndGroup();
filter.EndGroup();
filter.By("Employer", Operation.IsNull, FilterStatementConnector.And);
filter.EndGroup();
filter.By("Birth.Country", Operation.EqualTo, "USA");
var people = db.Products.Where(filter);
//or using the fluent interface...
var filter = new Filter<Products>();
filter
.OpenGroup
.OpenGroup
.By("Name", Operation.DoesNotContain, "doe")
.Or
.OpenGroup
.By("Name", Operation.EndsWith, "Doe")
.Or
.By("Name", Operation.StartsWith, "Jo")
.CloseGroup
.CloseGroup
.And
.By("Employer", Operation.IsNull)
.CloseGroup
.And
.By("Birth.Country", Operation.EqualTo, "USA");
var people = db.Products.Where(filter);
That would produce an expression like this: (Excluding all the NotNull checks and .Trim().ToLower() functions)
db.Products
.Where(p => ( ( !p.Name.Contains("doe") || ( p.Name.EndsWith("Doe") || p.Name.StartsWith("Jo") ) ) && p.Employer == null ) && p.Birth.Country == "USA" );
Every time you start a group that means all further statements will be at the same "parenthesis" until EndGroup is called. You can even add groups to groups! (For those super complex expressions)
Groups In WinForm
The WinForms has been updated to allow tests of groups. Simply right-click on a + button and choose Add Group. Doing this can produce a form like the below image:

Multi-Mat
Related Skills
node-connect
349.7kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
109.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
349.7kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
349.7kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
