Table of Contents

Method Create

Namespace
Innova.Data.Entity
Assembly
Innova.Data.dll

Create()

Creates a new instance of the entity.

public abstract T Create()

Returns

T

The created entity.

Create(IPropertyValues)

Creates a new instance of the entity with the specified property values.

public virtual T Create(IPropertyValues propertyValues)

Parameters

propertyValues IPropertyValues

The property values to set on the entity.

Returns

T

The created entity.

Create(IPrimaryKey)

Creates a new instance of the entity with the specified primary key values.

public T Create(IPrimaryKey keys)

Parameters

keys IPrimaryKey

The primary key values to set on the entity.

Returns

T

The created entity.