Interface IEntityProvider
Defines a uniform interface for performing entity operations
Namespace: EPiServer.Data.Entity
Assembly: EPiServer.Data.dll
Version: 12.0.3Syntax
public interface IEntityProvider
Remarks
The primary way of obtaining entity provider instances is through Get
Methods
AddEntityInstance(IEntity)
Add a new instance of an IEntity
Declaration
IEntity AddEntityInstance(IEntity entity)
Parameters
Type | Name | Description |
---|---|---|
IEntity | entity | The entity to add |
Returns
GetEntityInstance(Type, DbDataReader)
Creates an instance of an object based on its System.
Declaration
object GetEntityInstance(Type type, DbDataReader reader)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | System System. |
System. |
reader | The System. |
Returns
Type | Description |
---|---|
System. |
GetEntityInstance(Type, Int32)
Creates an instance of an object based on its System.
Declaration
IEntity GetEntityInstance(Type type, int id)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | System System. |
System. |
id | ID of the object |
Returns
Type | Description |
---|---|
IEntity |
GetSupportedOperations(Type)
Gets which operations this entity provider supports for the specified type.
Declaration
SupportedOperations GetSupportedOperations(Type type)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | The System. |
Returns
Type | Description |
---|---|
Supported |
The supported operations, possibly multiple values (flags) |
RemoveEntityInstance(IEntity)
Remove an existing IEntity
Declaration
void RemoveEntityInstance(IEntity entity)
Parameters
Type | Name | Description |
---|---|---|
IEntity | entity | The entity to remove |
UpdateEntityInstance(IEntity)
Update an existing IEntity
Declaration
void UpdateEntityInstance(IEntity entity)
Parameters
Type | Name | Description |
---|---|---|
IEntity | entity | The entity to update |