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

SqlAlterTableExpression() public method

public SqlAlterTableExpression ( Expression table, IReadOnlyList actions ) : System.Collections.Generic
table System.Linq.Expressions.Expression
actions IReadOnlyList
return System.Collections.Generic
		public SqlAlterTableExpression(Expression table, IReadOnlyList<Expression> actions)
			: base(typeof(void))
		{
			this.Table = table;
			this.Actions = actions;
		}
	}

Same methods

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