C# Класс MicroLite.SqlString

A class which contains the clauses of a SQL command.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Parse ( string commandText, Clauses clauses ) : SqlString

Parses the specified command text into a SqlString instance populating the specified Clauses if present in the command text.

Приватные методы

Метод Описание
AppendFrom ( string commandText, Clauses clauses, SegmentPositions segmentPositions ) : SqlString
AppendGroupBy ( string commandText, Clauses clauses, SegmentPositions segmentPositions ) : SqlString
AppendOrderBy ( string commandText, Clauses clauses, SegmentPositions segmentPositions ) : SqlString
AppendSelect ( string commandText, Clauses clauses, SegmentPositions segmentPositions ) : SqlString
AppendWhere ( string commandText, Clauses clauses, SegmentPositions segmentPositions ) : SqlString
SqlString ( ) : System

Описание методов

Parse() публичный статический Метод

Parses the specified command text into a SqlString instance populating the specified Clauses if present in the command text.
public static Parse ( string commandText, Clauses clauses ) : SqlString
commandText string The SQL command text.
clauses Clauses The clauses to include in the SqlString.
Результат SqlString