Method AutoSelect
| Improve this Doc View SourceAutoSelect()
Constructs SQL SELECT by automatically matching columns.
Declaration
public DbQueryBuilder AutoSelect()
Returns
Type | Description |
---|---|
DbQueryBuilder | This query builder for fluent coding. |
AutoSelect(Model, Projection)
Constructs SQL SELECT by automatically matching columns between specified source model and target projection.
Declaration
public DbQueryBuilder AutoSelect(Model from, Projection to)
Parameters
Type | Name | Description |
---|---|---|
Model | from | The source model. |
Projection | to | The target projection. |
Returns
Type | Description |
---|---|
DbQueryBuilder | This query builder for fluent coding. |