IRuleSource Interface
Declares members that custom Validation Rule Sources implement.
Namespace: DevExpress.Persistent.Validation
Assembly: DevExpress.Persistent.Base.v24.1.dll
NuGet Package: DevExpress.Persistent.Base
Declaration
Remarks
Implement the IRuleSource
interface in your business class to create a custom Validation Rule Source. Custom Validation Rule Sources allow you to store Validation Rules in the database. We recommend that you use this technique if you need to frequently customize Validation Rules in a deployed application, but you cannot redeploy the application or customize its Application Model.
Note
Persistent validation rules are in action only if the application’s database has been created and initialized. In debug mode, a new XAF application creates its database on the first login attempt (when a user clicks the Log In button for the first time). For these reasons, if you define a persistent validation rule that affects the login form, this rule will not work until you complete the login process at least once.
Refer to the following help topic for information on other techniques to declare Validation Rules: Declare Validation Rules.
The IRuleSource
interface declares the following members:
- IRuleSource.Name property
- Returns the unique name of the custom Validation Rule Source.
- IRuleSource.CreateRules method
- Instantiates custom Validation Rules.
The Validation Module automatically collects persistent Validation Rule Sources and Rules when you start an application. Persistent Validation Rule Sources and Rules are persistent classes that implement the IRuleSource
and IRule interfaces accordingly. Built-in Rule Sources query the database each time before validation occurs. Use the EnableRuntimeRuleCache property to enable Rule caching for all persistent Rule Sources. You can also disable automatic collection of persistent Rules and Rule Sources and add custom proxy Rule Sources with different behavior. To see the example of how to do this, refer to the following property description: EnableRuntimeRuleDiscovery.
Example
The following example demonstrates how to create a custom persistent Validation Rule Source:
In .NET Applications
- Create a new class (
RuleRequiredFieldPersistent
) and implement theIRuleSource
interface in it. - Apply DefaultClassOptionsAttribute to this class to allow users to create Validation Rules at runtime.
In the
DevExpress.Persistent.Validation.Extensions.IRuleSource.CreateRules(IRuleSet ruleSet)
method create aRuleRequiredField
Validation Rule based on the values of theRuleRequiredFieldPersistent
class public properties. Note that this is an extension method. This implementation of a persistent validation rule needs to use this method instead of IRuleSource.CreateRules so that the method has access to theIRuleSet
service.Persistent validation rules cannot use Dependency Injection to access services in a
CreateRule
method’s implementation because at the time this method is invoked, the rule object’sSession.ServiceProvider
(XPO) orIObjectSpace.ServiceProvider
(EF Core) object is already disposed of.
using DevExpress.Persistent.Base;
using DevExpress.Persistent.BaseImpl.EF;
using DevExpress.Persistent.Validation;
using DevExpress.Persistent.Validation.Extensions;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Reflection;
namespace YourSolutionName.Module.BusinessObjects;
[DefaultClassOptions]
public class RuleRequiredFieldPersistent : BaseObject, IRuleSource {
public virtual string RuleName { get; set; }
public virtual string CustomMessageTemplate { get; set; }
public virtual bool SkipNullOrEmptyValues { get; set; }
public virtual bool InvertResult { get; set; }
public virtual string ContextIDs { get; set; }
public virtual string Property { get; set; }
public virtual string ObjectType {
get {
if(ObjectTypeCore != null) {
return ObjectTypeCore.FullName;
}
return "";
}
set { ObjectTypeCore = ReflectionHelper.FindType(value); }
}
[NotMapped]
[TypeConverter(typeof(LocalizedClassInfoTypeConverter))]
public virtual Type ObjectTypeCore { get; set; }
# region IRuleSource Members
public System.Collections.Generic.ICollection<IRule> CreateRules() {
throw new NotImplementedException();
}
public ICollection<IRule> CreateRules(IRuleSet ruleSet) {
System.Collections.Generic.List<IRule> list = new System.Collections.Generic.List<IRule>();
RuleRequiredField rule = new RuleRequiredField();
rule.Properties.SkipNullOrEmptyValues = this.SkipNullOrEmptyValues;
rule.Properties.Id = this.ID.ToString();
rule.Properties.InvertResult = this.InvertResult;
rule.Properties.CustomMessageTemplate = this.CustomMessageTemplate;
rule.Properties.TargetContextIDs = this.ContextIDs;
rule.Properties.TargetType = this.ObjectTypeCore;
if(rule.Properties.TargetType != null) {
foreach(PropertyInfo pi in rule.Properties.TargetType.GetProperties()) {
if(pi.Name == this.Property) {
rule.Properties.TargetPropertyName = pi.Name;
}
}
}
for(int i = ruleSet.RegisteredRules.Count - 1; i >= 0; i--) {
if(ruleSet.RegisteredRules[i].Id == this.ID.ToString()) {
ruleSet.RegisteredRules.RemoveAt(i);
}
}
list.Add(rule);
return list;
}
[Browsable(false)]
public string Name {
get { return this.RuleName; }
}
# endregion
}
// Make sure that you use options.UseChangeTrackingProxies() in your DbContext settings.
In .NET Framework Applications
- Create a new class (RuleRequiredFieldPersistent) and implement the IRuleSource interface in it.
- Apply DefaultClassOptionsAttribute to this class to allow users to create Validation Rules at runtime.
- In the IRuleSource.CreateRules method, create a RuleRequiredField Validation Rule based on the values of the RuleRequiredFieldPersistent class public properties.
using DevExpress.Persistent.Base;
using DevExpress.Persistent.BaseImpl.EF;
using DevExpress.Persistent.Validation;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Reflection;
namespace YourSolutionName.Module.BusinessObjects;
[DefaultClassOptions]
public class RuleRequiredFieldPersistent : BaseObject, IRuleSource {
public virtual string RuleName { get; set; }
public virtual string CustomMessageTemplate { get; set; }
public virtual bool SkipNullOrEmptyValues { get; set; }
public virtual bool InvertResult { get; set; }
public virtual string ContextIDs { get; set; }
public virtual string Property { get; set; }
public virtual string ObjectType {
get {
if(ObjectTypeCore != null) {
return ObjectTypeCore.FullName;
}
return "";
}
set { ObjectTypeCore = ReflectionHelper.FindType(value); }
}
[NotMapped]
[TypeConverter(typeof(LocalizedClassInfoTypeConverter))]
public virtual Type ObjectTypeCore { get; set; }
#region IRuleSource Members
public ICollection<IRule> CreateRules() {
List<IRule> list = new List<IRule>();
RuleRequiredField rule = new RuleRequiredField();
rule.Properties.SkipNullOrEmptyValues = SkipNullOrEmptyValues;
rule.Properties.Id = ID.ToString();
rule.Properties.InvertResult = InvertResult;
rule.Properties.CustomMessageTemplate = CustomMessageTemplate;
rule.Properties.TargetContextIDs = ContextIDs;
rule.Properties.TargetType = ObjectTypeCore;
if(rule.Properties.TargetType != null) {
foreach(PropertyInfo pi in rule.Properties.TargetType.GetProperties()) {
if(pi.Name == Property) {
rule.Properties.TargetPropertyName = pi.Name;
}
}
}
for(int i = Validator.RuleSet.RegisteredRules.Count - 1; i >= 0; i--) {
if(Validator.RuleSet.RegisteredRules[i].Id == ID.ToString()) {
Validator.RuleSet.RegisteredRules.RemoveAt(i);
}
}
list.Add(rule);
return list;
}
[Browsable(false)]
public string Name {
get { return RuleName; }
}
#endregion
}
// Make sure that you use options.UseChangeTrackingProxies() in your DbContext settings.
Limitations
- Multitenant applications do not currently support persistent validation rules.