Shaolinq.Persistence.Linq.Expressions.SqlCreateTableExpression.SqlCreateTableExpression C# (CSharp) Method

SqlCreateTableExpression() public method

public SqlCreateTableExpression ( SqlTableExpression table, bool ifNotExist, IEnumerable columnExpressions, IEnumerable tableConstraintExpressions, IEnumerable tableOptions = null ) : System.Collections.Generic
table SqlTableExpression
ifNotExist bool
columnExpressions IEnumerable
tableConstraintExpressions IEnumerable
tableOptions IEnumerable
return System.Collections.Generic
		public SqlCreateTableExpression(SqlTableExpression table, bool ifNotExist, IEnumerable<SqlColumnDefinitionExpression> columnExpressions, IEnumerable<Expression> tableConstraintExpressions, IEnumerable<SqlTableOption> tableOptions = null)
			: this(table, ifNotExist, columnExpressions.ToReadOnlyCollection(), tableConstraintExpressions.ToReadOnlyCollection(), tableOptions?.ToReadOnlyCollection())
		{
		}

Same methods

SqlCreateTableExpression::SqlCreateTableExpression ( SqlTableExpression table, bool ifNotExist, IReadOnlyList columnExpressions, IReadOnlyList tableConstraintExpressions, IReadOnlyList tableOptions = null ) : System.Collections.Generic