ObjectSet<TEntity>.CreateObject<T> メソッド
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
指定した型のインスタンスを作成します。
名前空間: System.Data.Entity.Core.Objects
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Function CreateObject(Of T As {Class, TEntity}) As T
'使用
Dim instance As ObjectSet
Dim returnValue As T
returnValue = instance.CreateObject()
public T CreateObject<T>()
where T : class, TEntity
public:
generic<typename T>
where T : ref class, TEntity
T CreateObject()
member CreateObject : unit -> 'T when 'T : not struct and 'TEntity
JScript does not support generic types and methods.
型パラメーター
- T
取得するオブジェクトの型。
戻り値
型 : T
要求した T 型のインスタンス、または、T 型に対応するプロキシ型のインスタンス。