Hd.QueryExtensions.SqlConstantCollection.Remove C# (CSharp) 메소드

Remove() 공개 메소드

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. ///
리턴 void
		public virtual void Remove(SqlConstant value)
		{
			List.Remove(value);
		}