Hd.QueryExtensions.SqlConstantCollection.AddRange C# (CSharp) Method

AddRange() public method

Adds the elements of an array to the end of this SqlConstantCollection.
public AddRange ( SqlConstant items ) : void
items SqlConstant /// The array whose elements are to be added to the end of this SqlConstantCollection. ///
return void
		public virtual void AddRange(SqlConstant[] items)
		{
			foreach (SqlConstant item in items)
			{
				List.Add(item);
			}
		}

Same methods

SqlConstantCollection::AddRange ( SqlConstantCollection items ) : void