ReadOnlyMetadataCollection<T>.TryGetValue 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
使用指定的标识从此集合中检索一个项。
命名空间: System.Data.Entity.Core.Metadata.Edm
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public Overridable Function TryGetValue ( _
identity As String, _
ignoreCase As Boolean, _
<OutAttribute> ByRef item As T _
) As Boolean
用法
Dim instance As ReadOnlyMetadataCollection
Dim identity As String
Dim ignoreCase As Boolean
Dim item As T
Dim returnValue As Boolean
returnValue = instance.TryGetValue(identity, _
ignoreCase, item)
public virtual bool TryGetValue(
string identity,
bool ignoreCase,
out T item
)
public:
virtual bool TryGetValue(
String^ identity,
bool ignoreCase,
[OutAttribute] T% item
)
abstract TryGetValue :
identity:string *
ignoreCase:bool *
item:'T byref -> bool
override TryGetValue :
identity:string *
ignoreCase:bool *
item:'T byref -> bool
public function TryGetValue(
identity : String,
ignoreCase : boolean,
item : T
) : boolean
参数
- identity
类型:System.String
要搜索的项的标识。
- ignoreCase
类型:System.Boolean
如果执行不区分大小写的搜索,则为 true;否则为 false。
- item
类型:T%
在此方法返回时,此输出参数会包含集合中的一个项。 如果不存在匹配的项,此输出参数将包含 null。
返回值
类型:System.Boolean
如果存在与搜索条件匹配的项,则为 true;否则为 false。