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

SqlAlterTableExpression() public method

public SqlAlterTableExpression ( Expression table, IEnumerable constraintActions ) : System.Collections.Generic
table System.Linq.Expressions.Expression
constraintActions IEnumerable
return System.Collections.Generic
		public SqlAlterTableExpression(Expression table, IEnumerable<SqlConstraintActionExpression> constraintActions)
			: this(table, constraintActions.ToReadOnlyCollection())
		{
			
		}

Same methods

SqlAlterTableExpression::SqlAlterTableExpression ( Expression table ) : System.Collections.Generic
SqlAlterTableExpression::SqlAlterTableExpression ( Expression table, IEnumerable actions ) : System.Collections.Generic
SqlAlterTableExpression::SqlAlterTableExpression ( Expression table, IReadOnlyList actions ) : System.Collections.Generic
SqlAlterTableExpression::SqlAlterTableExpression ( Expression table, IReadOnlyList constraintActions ) : System.Collections.Generic
SqlAlterTableExpression