Click or drag to resize
weroSoft AG, Software
SelectStatementExtensions Class
The documentation is integral part of the weroSoft product documentation. This part is intended to be used by developers only.
Provides extension methods for easy creation of statements.
Inheritance Hierarchy
SystemObject
  WeroSoft.QueryingSelectStatementExtensions

Namespace:  WeroSoft.Querying
Assembly:  WeroSoft.Core.Library (in WeroSoft.Core.Library.dll) Version: 3.0 Pre-Release
Syntax
C#
public static class SelectStatementExtensions

The SelectStatementExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAnd
Operator combining all defined operators by a logical AND.
Public methodStatic memberContains
Operator for selecting objects by a string contained in another string.
Public methodStatic memberEndsWith
Operator for selecting objects if the accessed value ends with a given string.
Public methodStatic memberIsEqual(SelectStatement, String, DateTime)
Creates an operator comparing a given date is equal than the appropriate object value.
Public methodStatic memberIsEqual(SelectStatement, String, Object)
Creates an operator comparing a given value is equal to the appropriate object value.
Public methodStatic memberIsEquals
Operator for selecting objects if the accessed value ends with a given string.
Public methodStatic memberIsGreaterThan(SelectStatement, String, DateTime)
Creates an operator comparing a given date is greater than the appropriate object value.
Public methodStatic memberIsGreaterThan(SelectStatement, String, Object)
Creates an operator comparing a given value is greater than the appropriate object value.
Public methodStatic memberIsGreaterThanOrEqual(SelectStatement, String, DateTime)
Creates an operator comparing a given date is greater or equal than the appropriate object value.
Public methodStatic memberIsGreaterThanOrEqual(SelectStatement, String, Object)
Creates an operator comparing a given value is greater than or equal to the appropriate object value.
Public methodStatic memberIsLessThan(SelectStatement, String, DateTime)
Creates an operator comparing a given date is less than the appropriate object value.
Public methodStatic memberIsLessThan(SelectStatement, String, Object)
Creates an operator comparing a given value is less than the appropriate object value.
Public methodStatic memberIsLessThanOrEqual(SelectStatement, String, DateTime)
Creates an operator comparing a given date is less or equal than the appropriate object value.
Public methodStatic memberIsLessThanOrEqual(SelectStatement, String, Object)
Creates an operator comparing a given value is less or greater than the appropriate object value.
Public methodStatic memberIsNotEqual(SelectStatement, String, DateTime)
Creates an operator comparing a given date is not equal than the appropriate object value.
Public methodStatic memberIsNotEqual(SelectStatement, String, Object)
Creates an operator comparing a given value is not equal to the appropriate object value.
Public methodStatic memberIsNotEquals
Operator for selecting objects if the accessed value is not equal to the given string.
Public methodStatic memberOr
Operator combining all defined operators by a logical OR.
Public methodStatic memberOrderBy(Statement, String)
Adds a single order statement to a statement.
Public methodStatic memberOrderBy(Statement, OrderClause)
Adds multiple order clauses to the statement.
Public methodStatic memberOrderBy(Statement, String, SortDefinition)
Adds a single order statement to a statement.
Public methodStatic memberStartsWith
Operator for selecting objects if the accessed value starts with a given string.
Public methodStatic memberWhere
Adds a where clause to a defined statement.
Top
See Also