Interface IFindOneContext<TEntity>
Generic interface for data operation contexts of the IFindOneCommand.
Inherited Members
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
System.IDisposable.Dispose()
Namespace: Kephas.Data.Commands
Assembly: Kephas.Data.dll
Syntax
public interface IFindOneContext<TEntity> : IFindOneContext, IFindContextBase, 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 entity to find.
Declaration
Expression<Func<TEntity, bool>> Criteria { get; }
Property Value
Type | Description |
---|---|
System.Linq.Expressions.Expression<System.Func<TEntity, System.Boolean>> | The criteria of the entity to find. |
Remarks
Overrides the untyped expression from the base interface to provide LINQ-support.