コード例 #1
0
ファイル: SqlJoin.cs プロジェクト: WouterDemuynck/popsql
 internal SqlJoin(SqlJoinType type, SqlTable table, SqlExpression predicate = null)
 {
     if (table == null) throw new ArgumentNullException(nameof(table));
     Type = type;
     Table = table;
     On = predicate == null ? null : new SqlOn(predicate);
 }
コード例 #2
0
ファイル: Sql.cs プロジェクト: WouterDemuynck/popsql
 /// <summary>
 /// Creates a <see cref="SqlUpdate"/> that updates rows in the specified <paramref name="table"/>.
 /// </summary>
 /// <param name="table">
 /// The table to update.
 /// </param>
 /// <returns>
 /// A <see cref="SqlUpdate"/> that updates rows in the specified <paramref name="table"/>.
 /// </returns>
 public static ISqlUpdateClause Update(SqlTable table)
 {
     return new SqlUpdate.UpdateClause(table);
 }
コード例 #3
0
 public ISqlJoinClause LeftJoin(SqlTable table)
 {
     return(JoinInternal(SqlJoinType.Left, table));
 }
コード例 #4
0
 public ISqlJoinClause RightJoin(SqlTable table)
 {
     return(JoinInternal(SqlJoinType.Right, table));
 }
コード例 #5
0
 public ISqlJoinClause InnerJoin(SqlTable table)
 {
     return(JoinInternal(SqlJoinType.Inner, table));
 }
コード例 #6
0
 public ISqlJoinClause Join(SqlTable table)
 {
     return(JoinInternal(SqlJoinType.Default, table));
 }
コード例 #7
0
ファイル: Sql.cs プロジェクト: WouterDemuynck/popsql
 /// <summary>
 /// Creates a <see cref="SqlUpdate"/> that updates rows in the specified <paramref name="table"/>.
 /// </summary>
 /// <param name="table">
 /// The table to update.
 /// </param>
 /// <returns>
 /// A <see cref="SqlUpdate"/> that updates rows in the specified <paramref name="table"/>.
 /// </returns>
 public static ISqlUpdateClause Update(SqlTable table)
 {
     return(new SqlUpdate.UpdateClause(table));
 }
コード例 #8
0
 public UpdateClause(SqlTable table)
     : base(new SqlUpdate(table))
 {
 }
コード例 #9
0
 protected override SqlExpression VisitTable(SqlTable expression)
 {
     _writer.WriteTable(expression.TableName, expression.Alias);
     return expression;
 }