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

Remove() public method

Removes the first occurrence of a specific SqlConstant from this SqlConstantCollection.
public Remove ( SqlConstant value ) : void
value SqlConstant /// The SqlConstant value to remove from this SqlConstantCollection. ///
return void
		public virtual void Remove(SqlConstant value)
		{
			List.Remove(value);
		}