12 lines
290 B
C#
12 lines
290 B
C#
namespace Umbraco.Core
|
|
{
|
|
public static partial class Constants
|
|
{
|
|
public static class DatabaseProviders
|
|
{
|
|
public const string SqlCe = "System.Data.SqlServerCe.4.0";
|
|
public const string SqlServer = "System.Data.SqlClient";
|
|
}
|
|
}
|
|
}
|