ObjectContext.CreateObject<T> 方法

定义

创建并返回所请求类型的实例。

public:
generic <typename T>
 where T : class T CreateObject();
public T CreateObject<T> () where T : class;
member this.CreateObject : unit -> 'T (requires 'T : null)
Public Function CreateObject(Of T As Class) () As T

类型参数

T

要返回的对象的类型。

返回

T

所请求类型 T 的实例,或一个使得 T 能够与 Entity Framework 一起使用的派生类型的实例。 返回的对象是所请求类型的实例或使得请求的类型能够与 Entity Framework 一起使用的派生类型的实例。

注解

方法 CreateObject 与 POCO 自定义数据类一起使用,以确保实体框架可以正确管理返回的对象。 有关详细信息,请参阅 创建 POCO 代理 和使用 POCO 实体的要求。

适用于