ObjectParameterCollection.Contains 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
按引用检查集合中是否存在指定的 ObjectParameter。
重载
Contains(ObjectParameter) |
按引用检查集合中是否存在指定的 ObjectParameter。 |
Contains(String) |
确定集合中是否存在具有指定名称的 ObjectParameter。 |
Contains(ObjectParameter)
按引用检查集合中是否存在指定的 ObjectParameter。
public:
virtual bool Contains(System::Data::Objects::ObjectParameter ^ parameter);
public bool Contains (System.Data.Objects.ObjectParameter parameter);
abstract member Contains : System.Data.Objects.ObjectParameter -> bool
override this.Contains : System.Data.Objects.ObjectParameter -> bool
Public Function Contains (parameter As ObjectParameter) As Boolean
参数
- parameter
- ObjectParameter
要在集合中查找的 ObjectParameter。
返回
如果在集合中找到参数对象,则为 true
;否则为 false
。
实现
例外
parameter
参数为 null
。
注解
这是基于引用的检查。 也就是说,如果 ObjectParameter 指定的 包含与集合中的参数对象同名的 ,则此方法仅当它是同一个对象时才会返回 true
。
适用于
Contains(String)
确定集合中是否存在具有指定名称的 ObjectParameter。
public:
bool Contains(System::String ^ name);
public bool Contains (string name);
member this.Contains : string -> bool
Public Function Contains (name As String) As Boolean
参数
- name
- String
要在集合中查找的参数的名称。 此名称不应包含“@”参数标记(它用在实体 SQL 语句中),只能为实际名称。
返回
如果在集合中找到具有指定名称的参数,则为 true
;否则为 false
。
例外
name
参数为 null
。
示例
此示例使用 Contains 方法确定指定的参数是否在集合中。
using (AdventureWorksEntities context =
new AdventureWorksEntities())
{
string queryString =
@"SELECT VALUE contact FROM AdventureWorksEntities.Contacts
AS contact WHERE contact.LastName = @ln AND contact.FirstName = @fn";
ObjectQuery<Contact> contactQuery =
new ObjectQuery<Contact>(queryString, context);
// Add parameters to the collection.
contactQuery.Parameters.Add(new ObjectParameter("ln", "Adams"));
contactQuery.Parameters.Add(new ObjectParameter("fn", "Frances"));
ObjectParameterCollection objectParameterCollection =
contactQuery.Parameters;
if (objectParameterCollection.Contains("ln"))
Console.WriteLine("ln is here");
else
Console.WriteLine("ln is not here");
}