EldorADO.NET Class Library

ObjectPath.Where Method (String)

[This is preliminary documentation and subject to change.]

Returns a new query which is a filter on the current query.

[Visual Basic]
Overridable Overloads Public Function Where( _
   ByVal condition As String _
) As ObjectPath
[C#]
public virtual ObjectPath Where(
   string condition
);

Parameters

condition
A condition that is applied on each row returned by the current query. The syntax of the condition is similar to that of DataView.Filter. The condition may contain "?" placeholders whose values are passed in the "args" argument. The condition may also contain the "{0}" format specifier which is replaced with the alias of the current query.

Return Value

Missing <returns> documentation for M:Eldorado.Object.Query.ObjectPath.Where(System.String)

Remarks

Do not forget to escape "{" and "}" characters in the condition (though these characters should only appear in strings and be passed as args).

See Also

ObjectPath Class | Eldorado.Object.Query Namespace | ObjectPath.Where Overload List