namespace FileShare_EFCore.Database
{
///
/// SQLite 专用 DbContext,用于隔离 SQLite 迁移集。
///
public sealed class SqliteAppDataContext(DatabaseConfiguration dbConfig) : AppDataContext(dbConfig)
{
}
///
/// SQL Server 专用 DbContext,用于隔离 SQL Server 迁移集。
///
public sealed class SqlServerAppDataContext(DatabaseConfiguration dbConfig) : AppDataContext(dbConfig)
{
}
///
/// PostgreSQL 专用 DbContext,用于隔离 PostgreSQL 迁移集。
///
public sealed class PostgreSqlAppDataContext(DatabaseConfiguration dbConfig) : AppDataContext(dbConfig)
{
}
///
/// MySQL 专用 DbContext,用于隔离 MySQL 迁移集。
///
public sealed class MySqlAppDataContext(DatabaseConfiguration dbConfig) : AppDataContext(dbConfig)
{
}
}