Class CRUDQueryHandler<TStore>
Represents an entity that can execute a query. The implementation may be called by multiple threads and must be safe
Inheritance
System.Object
    
    CRUDQueryHandler<TStore>
      
      
      
  Implements
Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: NFX.DataAccess.CRUD
Assembly: NFX.dll
Syntax
public abstract class CRUDQueryHandler<TStore> : CRUDQueryHandler, INamed where TStore : ICRUDDataStore
  Type Parameters
| Name | Description | 
|---|---|
| TStore | 
Constructors
CRUDQueryHandler(TStore, QuerySource)
Declaration
protected CRUDQueryHandler(TStore store, QuerySource source)
  Parameters
| Type | Name | Description | 
|---|---|---|
| TStore | store | |
| QuerySource | source | 
CRUDQueryHandler(TStore, String)
Declaration
protected CRUDQueryHandler(TStore store, string name)
  Parameters
| Type | Name | Description | 
|---|---|---|
| TStore | store | |
| System.String | name | 
Properties
Store
Store instance that handler is under
Declaration
public TStore Store { get; }
  Property Value
| Type | Description | 
|---|---|
| TStore |