Interface IBulkDataOperationContext<TEntity>
Generic interface for contexts used in bulk data operations.
Inherited Members
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
System.IDisposable.Dispose()
Namespace: Kephas.Data.Commands
Assembly: Kephas.Data.dll
Syntax
public interface IBulkDataOperationContext<TEntity> : IBulkDataOperationContext, IDataOperationContext, IContext, IExpando, IDynamicMetaObjectProvider, IIndexable, ILoggable, IDisposable
Type Parameters
Name | Description |
---|---|
TEntity | Type of the entity. |
Properties
| Improve this Doc View SourceCriteria
Gets the criteria of the entities to purge.
Declaration
Expression<Func<TEntity, bool>> Criteria { get; }
Property Value
Type | Description |
---|---|
System.Linq.Expressions.Expression<System.Func<TEntity, System.Boolean>> | The criteria of the entities to purge. |
Remarks
Overrides the untyped expression from the base interface to provide LINQ-support.