ItemCollection.GetItem<T> 方法 (String, Boolean)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
藉由以區分大小寫或不區分大小寫的搜尋,使用指定的識別傳回強類型 GlobalItem 物件。
命名空間: System.Data.Entity.Core.Metadata.Edm
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public Function GetItem(Of T As GlobalItem) ( _
identity As String, _
ignoreCase As Boolean _
) As T
'用途
Dim instance As ItemCollection
Dim identity As String
Dim ignoreCase As Boolean
Dim returnValue As T
returnValue = instance.GetItem(identity, _
ignoreCase)
public T GetItem<T>(
string identity,
bool ignoreCase
)
where T : GlobalItem
public:
generic<typename T>
where T : GlobalItem
T GetItem(
String^ identity,
bool ignoreCase
)
member GetItem :
identity:string *
ignoreCase:bool -> 'T when 'T : GlobalItem
JScript does not support generic types and methods.
類型參數
- T
此方法傳回的類型。
參數
- identity
類型:System.String
項目的識別。
- ignoreCase
類型:System.Boolean
若要執行不區分大小寫的搜尋,則為 true,否則為 false。
傳回值
類型:T
由識別所指定的項目。