Method Create
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
IPropertyValuesThe 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
IPrimaryKeyThe primary key values to set on the entity.
Returns
- T
The created entity.