ObjectContext.CreateObject<T> 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
创建并返回所请求的类型的实例。
命名空间: System.Data.Entity.Core.Objects
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public Overridable Function CreateObject(Of T As Class) As T
用法
Dim instance As ObjectContext
Dim returnValue As T
returnValue = instance.CreateObject()
public virtual T CreateObject<T>()
where T : class
public:
generic<typename T>
where T : ref class
virtual T CreateObject()
abstract CreateObject : unit -> 'T when 'T : not struct
override CreateObject : unit -> 'T when 'T : not struct
JScript does not support generic types and methods.
类型参数
- T
要返回的对象的类型。
返回值
类型:T
所请求类型 T 的实例,或一个使得 T 能够与实体框架一起使用的派生类型的实例。返回的对象是所请求类型的实例或使得请求的类型能够与实体框架一起使用的派生类型的实例。