Interface IPreCommandBuilder<TEntity, TReturn>
Represents a pre-command builder to configure the query.
Inherited Members
Namespace: Venflow.Commands
Assembly: Venflow.dll
Syntax
public interface IPreCommandBuilder<TEntity, TReturn> : IQueryCommandBuilder<TEntity, TReturn>, ISpecficVenflowCommandBuilder<IQueryCommand<TEntity, TReturn>, IBaseQueryRelationBuilder<TEntity, TEntity, TReturn>> where TEntity : class, new()
where TReturn : class, new()
Type Parameters
Name | Description |
---|---|
TEntity | The type of the entity which will be queried. |
TReturn | The return type of the query. |
Methods
| Improve this Doc View SourceAddFormatter()
Defines if >< should be replaced by automatically generated joins in your SQL.
Declaration
IBaseQueryRelationBuilder<TEntity, TEntity, TReturn> AddFormatter()
Returns
Type | Description |
---|---|
IBaseQueryRelationBuilder<TEntity, TEntity, TReturn> | An object that can be used to further configure the operation. |