Exemplo n.º 1
0
        /// <summary>
        ///     Add Microsoft SQL Server specific types for the Unit of Work
        /// </summary>
        public static IServiceCollection ForSql(this UnitOfWorkServiceBuilder builder, string connectionString)
        {
            if (builder is null)
            {
                throw new ArgumentNullException(nameof(builder));
            }

            if (string.IsNullOrEmpty(connectionString))
            {
                throw new ArgumentException($"'{nameof(connectionString)}' cannot be null or empty",
                                            nameof(connectionString));
            }

            var sqlConnectionString = new SqlDatabaseConnectionString(connectionString);

            builder.ServiceCollection.AddSingleton(sqlConnectionString);
            builder.ServiceCollection.AddTransient <IDatabaseConnectionFactory, SqlDatabaseConnectionFactory>();

            return(builder.ServiceCollection);
        }
Exemplo n.º 2
0
 public SqlDatabaseConnectionFactory(SqlDatabaseConnectionString connectionString)
 {
     this.connectionString = connectionString ?? throw new ArgumentNullException(nameof(connectionString));
 }