Method SelectAll
- Namespace
- YndigoBlue.Velocity.Model
- Assembly
- YndigoBlue.Velocity.dll
SelectAll(IFromItem)
Configures the query to select all columns from the specified table or join.
public Query SelectAll(IFromItem fromItem)
Parameters
fromItemIFromItemThe table or join to select from.
Returns
- Query
This query instance for method chaining.
Remarks
This is equivalent to SELECT * FROM table. All columns from the specified table or join will be included in the result set.
SelectAll(IEnumerable<IFromItem>)
Configures the query to select all columns from the specified tables or joins.
public Query SelectAll(IEnumerable<IFromItem> fromItems)
Parameters
fromItemsIEnumerable<IFromItem>The tables or joins to select from.
Returns
- Query
This query instance for method chaining.
Remarks
This is equivalent to SELECT * FROM table1, table2, .... All columns from all specified tables or joins will be included in the result set.