mirror of
https://github.com/bitwarden/server
synced 2025-12-13 06:43:45 +00:00
* Enable Nullable In Unowned Repos * Update More Tests * Move to One If * Fix Collections * Format * Add Migrations * Move Pragma Annotation * Add Better Assert Message
32 lines
870 B
C#
32 lines
870 B
C#
using Dapper;
|
|
|
|
#nullable enable
|
|
|
|
namespace Bit.Infrastructure.Dapper.Repositories;
|
|
|
|
public abstract class BaseRepository
|
|
{
|
|
static BaseRepository()
|
|
{
|
|
SqlMapper.AddTypeHandler(new DateTimeHandler());
|
|
}
|
|
|
|
public BaseRepository(string connectionString, string readOnlyConnectionString)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(connectionString))
|
|
{
|
|
throw new ArgumentNullException(nameof(connectionString));
|
|
}
|
|
if (string.IsNullOrWhiteSpace(readOnlyConnectionString))
|
|
{
|
|
throw new ArgumentNullException(nameof(readOnlyConnectionString));
|
|
}
|
|
|
|
ConnectionString = connectionString;
|
|
ReadOnlyConnectionString = readOnlyConnectionString;
|
|
}
|
|
|
|
protected string ConnectionString { get; private set; }
|
|
protected string ReadOnlyConnectionString { get; private set; }
|
|
}
|