Interface IInsertEntityService<T, TInsert>
Represents a service for inserting entities into a data store.
public interface IInsertEntityService<T, TInsert> : IEntityService<T> where T : class where TInsert : class
Type Parameters
T
The type of the entity.
TInsert
The type of the entity to be inserted.
- Extension Methods
Methods
- GetInsert(IPropertyValues, CancellationToken)
Gets the entity to be inserted based on the provided property values.
- Insert(List<TInsert>, CancellationToken)
Inserts a list of entities into the data store.