C# Class Shaolinq.Persistence.Linq.Expressions.SqlCreateIndexExpression

Inheritance: SqlBaseExpression
Show file Open project: tumtumtum/Shaolinq Class Usage Examples

Public Methods

Method Description
ChangeWhere ( Expression where ) : Expression
SqlCreateIndexExpression ( string indexName, SqlTableExpression table, bool unique, bool lowercaseIndex, IndexType indexType, bool ifNotExist, IEnumerable columns, IEnumerable includedColumns, Expression where = null ) : System.Collections.Generic
SqlCreateIndexExpression ( string indexName, SqlTableExpression table, bool unique, bool lowercaseIndex, IndexType indexType, bool ifNotExist, IReadOnlyList columns, IReadOnlyList includedColumns, Expression where = null ) : System.Collections.Generic

Method Details

ChangeWhere() public method

public ChangeWhere ( Expression where ) : Expression
where System.Linq.Expressions.Expression
return System.Linq.Expressions.Expression

SqlCreateIndexExpression() public method

public SqlCreateIndexExpression ( string indexName, SqlTableExpression table, bool unique, bool lowercaseIndex, IndexType indexType, bool ifNotExist, IEnumerable columns, IEnumerable includedColumns, Expression where = null ) : System.Collections.Generic
indexName string
table SqlTableExpression
unique bool
lowercaseIndex bool
indexType IndexType
ifNotExist bool
columns IEnumerable
includedColumns IEnumerable
where System.Linq.Expressions.Expression
return System.Collections.Generic

SqlCreateIndexExpression() public method

public SqlCreateIndexExpression ( string indexName, SqlTableExpression table, bool unique, bool lowercaseIndex, IndexType indexType, bool ifNotExist, IReadOnlyList columns, IReadOnlyList includedColumns, Expression where = null ) : System.Collections.Generic
indexName string
table SqlTableExpression
unique bool
lowercaseIndex bool
indexType IndexType
ifNotExist bool
columns IReadOnlyList
includedColumns IReadOnlyList
where System.Linq.Expressions.Expression
return System.Collections.Generic