* Fix CanForceCreateDatabase method and add some unit tests * Fixed an old copy/paste error * A little nitpicking over wording and formatting --------- Co-authored-by: kjac <kja@umbraco.dk>
13 lines
292 B
C#
13 lines
292 B
C#
namespace Umbraco.Cms.Persistence.SqlServer;
|
|
|
|
/// <summary>
|
|
/// Constants related to SQL Server.
|
|
/// </summary>
|
|
public static class Constants
|
|
{
|
|
/// <summary>
|
|
/// SQL Server provider name.
|
|
/// </summary>
|
|
public const string ProviderName = "Microsoft.Data.SqlClient";
|
|
}
|