Method From
- Namespace
- YndigoBlue.Velocity.Model
- Assembly
- YndigoBlue.Velocity.dll
From(IFromItem)
Sets the FROM clause to the specified table or join. Fluent API method.
public Query From(IFromItem fromItem)
Parameters
fromItemIFromItemThe table or join to query from.
Returns
- Query
This query instance for method chaining.
From(IFromItem, string)
Sets the FROM clause to the specified table or join with an alias. Fluent API method.
public Query From(IFromItem fromItem, string alias)
Parameters
fromItemIFromItemThe table or join to query from.
aliasstringThe alias to apply to the table or join.
Returns
- Query
This query instance for method chaining.
From(IEnumerable<IFromItem>)
Sets the FROM clause to the specified tables or joins. Fluent API method.
public Query From(IEnumerable<IFromItem> fromItems)
Parameters
fromItemsIEnumerable<IFromItem>The tables or joins to query from.
Returns
- Query
This query instance for method chaining.
From(IEnumerable<(IFromItem, string)>)
Sets the FROM clause to the specified tables or joins. Fluent API method.
public Query From(IEnumerable<(IFromItem, string)> fromItemsWithAliases)
Parameters
fromItemsWithAliasesIEnumerable<(IFromItem, string)>
Returns
- Query
This query instance for method chaining.