SpearSoft.RulesEngine NuGet Package

Rules Engine is a C# project that makes it easier for developers to define business rules on domain objects without coupling the domain object to the business rule.

The rules engine supports cross-field validation and conditional validation. Rules are interface-based and are easily extensible. Rules can be added using a fluent interface.

Note - SpearSoft.RulesEngine is a fork of the original RulesEngine that was published by athoma13 on CodePlex but has not been maintained for some time and was not ported (as far as I can tell) to another public source management system before CodePlex was shutdown. The original but archived source can be found here.

I also changed the namespace on this version from RulesEngine to SpearSoft.RulesEngine to prevent namespace collisions. Also, this version has already been ported to target .net core 2.1 and the library is targeting .net standard 2.0.

What is Rules Engine
Rules Engine is a . NET C# project that validates business logic by defining a bunch of rules for your data classes. Rules are defined using a fluent-interface (fluent validation) helper class, and not by decorating your existing objects with attributes, therefore de-coupling validation logic from data (or domain) classes.

##Features

Rules are inheritable. Defining RuleX for TypeA will also apply to TypeB (given that TypeB inherits from Type A) Details.
Rules are extensible. Creating custom rules are only a matter of implementing an interface. Details
Conditional validation.

When defining rules, it is possible to have different rules given different conditions. E.g. Not Null Rule only applies to FieldA when FieldB > 100. Details
Cross-Field validation.

Defining a rule that FieldA must be greater than FieldB comes very naturally with the fluent-interface helper class. Details
Fluent-Interface. Adding rules to objects is done by a fluent-interface helper class. Details
Error Messages.

Defining error messages can be done at the same time as defining your rules (Or separately). They can apply to the Class, A Property of that class, or a Rule for that property. Details
ASP.NET Mvc
An asp.net Mvc bridge is available for download. To use, create an instance of MvcValidationReport in one of your controllers, passing it your ModelState, Validate the model and that's it.

The report will populate ModelState with error messages (if any). No more Attribute-Style validation.

NOTE: This does not support client-side validation.




Got any SpearSoft.RulesEngine Question?





Info

Version: 1.0.1
Author(s): SpearSoft.RulesEngine
Last Update: Thursday, September 20, 2018
.NET Fiddle: Create the first Fiddle
Project Url: https://github.com/sethspearman/SpearSoft.RulesEngine
NuGet Url: https://www.nuget.org/packages/SpearSoft.RulesEngine


Install
Install-Package SpearSoft.RulesEngine
dotnet add package SpearSoft.RulesEngine
paket add SpearSoft.RulesEngine
SpearSoft.RulesEngine Download (Unzip the "nupkg" after downloading)



Tags



STATS

must-have-score

avg-downloads-per-day

0

days-since-last-release

2038