ObjectSet<TEntity>.CreateObject 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.
Overloads
| CreateObject() | Creates a new entity type object. | 
| CreateObject<T>() | Creates an instance of the specified type. | 
CreateObject()
Creates a new entity type object.
public:
 TEntity CreateObject();public TEntity CreateObject();member this.CreateObject : unit -> 'EntityPublic Function CreateObject () As TEntityReturns
The new entity type object, or an instance of a proxy type that corresponds to the entity type.
Applies to
CreateObject<T>()
Creates an instance of the specified type.
public:
generic <typename T>
 where T : class, TEntity T CreateObject();public T CreateObject<T>() where T : class, TEntity;member this.CreateObject : unit -> 'TPublic Function CreateObject(Of T As {Class, TEntity}) () As TType Parameters
- T
Type of object to be returned.
Returns
An instance of the requested type T, or an instance of a proxy type that corresponds to the type T.