ObjectContext.CreateObject<T> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates and returns an instance of the requested type .
public virtual T CreateObject<T> () where T : class;
abstract member CreateObject : unit -> 'T (requires 'T : null)
override this.CreateObject : unit -> 'T (requires 'T : null)
Public Overridable Function CreateObject(Of T As Class) () As T
Type Parameters
- T
Type of object to be returned.
Returns
An instance of the requested type T , or an instance of a derived type that enables T to be used with the Entity Framework. The returned object is either an instance of the requested type or an instance of a derived type that enables the requested type to be used with the Entity Framework.
Applies to
Entity Framework