共用方式為


ReadOnlyMetadataCollection<T>.TryGetValue 方法

[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 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

參數

  • ignoreCase
    類型:System.Boolean
    若要執行不區分大小寫的搜尋,則為 true,否則為 false。
  • item
    類型:T%
    在此方法傳回時,此輸出參數會包含集合中的項目。 如果沒有符合的項目,此輸出參數會包含 null。

傳回值

類型:System.Boolean
如果有符合搜尋準則的項目,則為 true,否則為 false。

請參閱

參考

ReadOnlyMetadataCollection<T> 類別

System.Data.Entity.Core.Metadata.Edm 命名空間