ItemCollection.GetItem<T> 方法 (String)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
使用指定的标识返回一个强类型的 GlobalItem 对象。
命名空间: System.Data.Entity.Core.Metadata.Edm
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public Function GetItem(Of T As GlobalItem) ( _
identity As String _
) As T
用法
Dim instance As ItemCollection
Dim identity As String
Dim returnValue As T
returnValue = instance.GetItem(identity)
public T GetItem<T>(
string identity
)
where T : GlobalItem
public:
generic<typename T>
where T : GlobalItem
T GetItem(
String^ identity
)
member GetItem :
identity:string -> 'T when 'T : GlobalItem
JScript does not support generic types and methods.
类型参数
- T
由方法返回的类型。
参数
- identity
类型:System.String
项的标识。
返回值
类型:T
由标识指定的项。