Skip to content

Commit

Permalink
adds more flexibility to add select items after adding a from
Browse files Browse the repository at this point in the history
  • Loading branch information
ksmith173 committed Sep 1, 2022
1 parent ef1f2fc commit fbeca6e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/DapperQueryBuilder/FluentQueryBuilder/IFromBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ namespace DapperQueryBuilder
/// </summary>
public interface IFromBuilder : ICompleteCommand
{
/// <summary>
/// Adds one column to the select clauses
/// </summary>
ISelectBuilder Select(FormattableString column);

/// <summary>
/// Adds one or more columns to the select clauses
/// </summary>
ISelectBuilder Select(params FormattableString[] moreColumns);

/// <summary>
/// Adds a new table to from clauses. <br />
/// "FROM" word is optional. <br />
Expand Down

0 comments on commit fbeca6e

Please sign in to comment.