ISpecificationWithParams Interface

ISpecification Decorator Extended with Filter Parameters


namespace KLO128.D3ORM.Common.Abstract
{
    public interface ISpecificationWithParams : ISpecification
}

Assembly

KLO128.D3ORM.Common.Abstract

Base Types

ISpecification

Properties

Parameters


IDictionary<int, object?> Parameters { get; set; }

Description

Filter Parameters

Key := Filter Context's Placeholder Index

Value := Value

 

Methods

None

ISpecificationWithParams<TEntity> Interface

ISpecification<TEntity> Decorator Extended with Filter Parameters


namespace KLO128.D3ORM.Common.Abstract
{
    public interface ISpecificationWithParams<TEntity> : ISpecification<TEntity>, ISpecificationWithParams where TEntity : class
}

Assembly

KLO128.D3ORM.Common.Abstract

Base Types

ISpecification<TEntity> 

Type Parameters

TEntity : class

Properties

None

Methods

None