ObjectContext.CreateObject<T> 方法
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 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 與 Entity Framework 一起使用之衍生類型的執行個體。傳回的物件是所要求類型的執行個體,或是可讓要求的類型與 Entity Framework 搭配使用的衍生類型執行個體。