/// <summary>
 /// Adds a WHERE clause to the query, joining it with the previous with an 'OR' operator if needed.
 /// </summary>
 /// <remarks>
 /// Do not include the 'WHERE' keyword, as it is added automatically.
 /// </remarks>
 /// <param name="where">A WHERE clause.</param>
 /// <param name="parameters">Parameters included in the statement.</param>
 /// <returns>The query builder.</returns>
 public SqlUpdateContext OrWhere(string where, dynamic parameters = null)
 {
     Parameters.AddDynamicParams(parameters);
     SqlBuilder.OrWhere(where, parameters);
     return(this);
 }