Interface IBulkDataOperationContext
Interface for bulk data operation context.
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 : IDataOperationContext, IContext, IExpando, IDynamicMetaObjectProvider, IIndexable, ILoggable, IDisposable
Properties
| Improve this Doc View SourceCriteria
Gets the criteria of the entities to operate on.
Declaration
Expression Criteria { get; }
Property Value
Type | Description |
---|---|
System.Linq.Expressions.Expression | The criteria of the entities to operate on. |
EntityType
Gets the type of the entity.
Declaration
Type EntityType { get; }
Property Value
Type | Description |
---|---|
System.Type | The type of the entity. |
ThrowOnNotFound
Gets a value indicating whether to throw an exception if there were no entities to operate on.
Declaration
bool ThrowOnNotFound { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|