Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SqlFrom"/> class.
 /// </summary>
 public SqlFrom(SqlTableExpression table)
 {
     if (table == null)
     {
         throw new ArgumentNullException(nameof(table));
     }
     Table = table;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SqlInto"/> class.
 /// </summary>
 public SqlInto(SqlTableExpression table)
 {
     if (table == null) throw new ArgumentNullException(nameof(table));
     Table = table;
 }