Beispiel #1
0
 /// <summary>
 /// Creates a clone of the provided <see cref="SqlWhere"/> instance.
 /// </summary>
 /// <param name="where">The <see cref="SqlWhere"/> instance to clone.</param>
 /// <returns>A <see cref="SqlWhere"/> instance.</returns>
 public static SqlWhere Where(SqlWhere where) => new(where);
Beispiel #2
0
 /// <summary>
 /// Creates a new instance of the <see cref="SqlWhere"/> clause.
 /// </summary>
 /// <param name="where">The <see cref="SqlWhere"/> object to clone.</param>
 public SqlWhere(SqlWhere where)
 {
     Raw = where?.Raw ?? string.Empty;
 }