Opalis Quick Integration Kit 3.0
Gets or sets the set of relations that are supported by the filter.

Namespace:  Opalis.QuickIntegrationKit
Assembly:  Opalis.QuickIntegrationKit(in Opalis.QuickIntegrationKit.dll) Version: 3.0.0.0 (3.1.0.1)

Syntax

C#
public 
Relation 
Relations { 
get; 
set; }
Visual Basic (Declaration)
Public 
Property 
Relations 
As 
Relation
Visual C++
public:
property 
Relation 
Relations {
	
Relation 
get ();
	
void 
set (
Relation 
value);
}

Remarks

When no relations are specified a set of appropriate relations is automatically assigned to the filter as determined by the type of the property that is being marked with the OpalisFilter attribute.

Examples

CopyC#
[OpalisFilter(
"Incident Date", Relations =
Relation.Before | Relation.After)]
public DateTime IncidentDate
{
	get { 
return 
this.incidentDate; }
}

See Also