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

IndexOf() public method

Return the zero-based index of the first occurrence of a specific value in this SqlConstantCollection
public IndexOf ( SqlConstant value ) : int
value SqlConstant /// The SqlConstant value to locate in the SqlConstantCollection. ///
return int
		public virtual int IndexOf(SqlConstant value)
		{
			return List.IndexOf(value);
		}