Chili.Opf3 Send comments on this topic.
AppendPropertyComparison Method
See Also 
Chili.Opf3.Query Namespace > Generic ObjectQueryBuilder Class : AppendPropertyComparison Method




propertyA
The first property that is compared with the second one.
comparison
The comparison used to compare both properties.
propertyB
The second property that is compared with the first one.
Appends a comparison between two properties to the query.

Syntax

Visual Basic (Declaration) 
Public Sub AppendPropertyComparison( _
   ByVal propertyA As String, _
   ByVal comparison As Comparisons, _
   ByVal propertyB As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As ObjectQueryBuilder(Of T)
Dim propertyA As String
Dim comparison As Comparisons
Dim propertyB As String
 
instance.AppendPropertyComparison(propertyA, comparison, propertyB)
C# 
public void AppendPropertyComparison( 
   string propertyA,
   Comparisons comparison,
   string propertyB
)
Managed Extensions for C++ 
public: void AppendPropertyComparison( 
   string* propertyA,
   Comparisons comparison,
   string* propertyB
) 
C++/CLI 
public:
void AppendPropertyComparison( 
   String^ propertyA,
   Comparisons comparison,
   String^ propertyB
) 

Parameters

propertyA
The first property that is compared with the second one.
comparison
The comparison used to compare both properties.
propertyB
The second property that is compared with the first one.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also