Interface IQueryBuilder
A builder for building SQL queries.
Namespace: LemonEdge.DataAccess.Core.Abstractions.Builders
Assembly: LemonEdge.DataAccess.Core.Abstractions.dll
Syntax
public interface IQueryBuilder
Properties
MaxQueryWidth
The maximum length of line to be generated by the sql builder
Declaration
int MaxQueryWidth { get; set; }
Property Value
Type | Description |
---|---|
int |
Methods
GetCommandText()
Returns the builder's contents.
Declaration
string GetCommandText()
Returns
Type | Description |
---|---|
string |
GetCommandText(string)
Returns the builder's contents, with an indent.
Declaration
string GetCommandText(string lineIndent)
Parameters
Type | Name | Description |
---|---|---|
string | lineIndent |
Returns
Type | Description |
---|---|
string |