/// <summary> /// Wraps the specified non-keyword token according to the syntax /// of the SQL dialect being handled. For instance, in MySql this /// wraps a token into backticks, or in SQL Server into square brackets. /// </summary> /// <param name="token">The token.</param> /// <returns>The wrapped token.</returns> protected string ET(string token) => _tokenHelper.ET(token);
/// <summary> /// Wraps the specified non-keyword token according to the syntax /// of the SQL dialect being handled. For instance, in MySql this /// wraps a token into backticks, or in SQL Server into square brackets. /// </summary> /// <param name="token">The token.</param> /// <returns>The wrapped token.</returns> private string ET(string token) => _tokenHelper.ET(token);