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

SqlUpdateExpression() public method

public SqlUpdateExpression ( Expression source, IReadOnlyList assignments, Expression where, bool requiresIdentityInsert = false ) : System.Collections.Generic
source System.Linq.Expressions.Expression
assignments IReadOnlyList
where System.Linq.Expressions.Expression
requiresIdentityInsert bool
return System.Collections.Generic
		public SqlUpdateExpression(Expression source, IReadOnlyList<Expression> assignments, Expression where, bool requiresIdentityInsert = false)
			: base(typeof(void))
		{
			this.Source = source;
			this.Assignments = assignments;
			this.Where = where;
			this.RequiresIdentityInsert = requiresIdentityInsert;
		}
	}
SqlUpdateExpression