Changes magic strings to constants for database provider types.

This commit is contained in:
Shannon
2016-08-09 15:36:02 +02:00
parent 10422079b6
commit d99a691bdc
24 changed files with 79 additions and 65 deletions

View File

@@ -8,7 +8,7 @@ namespace Umbraco.Core.Persistence.SqlSyntax
/// <summary>
/// Represents an SqlSyntaxProvider for Sql Server
/// </summary>
[SqlSyntaxProviderAttribute("System.Data.SqlClient")]
[SqlSyntaxProviderAttribute(Constants.DatabaseProviders.SqlServer)]
public class SqlServerSyntaxProvider : MicrosoftSqlSyntaxProviderBase<SqlServerSyntaxProvider>
{
public SqlServerSyntaxProvider()