mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 18:14:22 +00:00
17 lines
401 B
C#
17 lines
401 B
C#
namespace Oqtane.Database.SqlServer
|
|
{
|
|
public class SqlServerDatabase : SqlServerDatabaseBase
|
|
{
|
|
private static string _friendlyName => "SQL Server";
|
|
|
|
private static string _name => "SqlServer";
|
|
|
|
static SqlServerDatabase()
|
|
{
|
|
Initialize(typeof(SqlServerDatabase));
|
|
}
|
|
|
|
public SqlServerDatabase() : base(_name, _friendlyName) { }
|
|
}
|
|
}
|