You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: delay attempts to install SQL Server schema until the host has started. This avoids errors in Program.cs-style applications where install would be attempted as soon as MapHub was invoked, before an application would have an opportunity to create its own database.
@@ -43,19 +37,6 @@ public class SqlServerHubLifetimeManager<THub> : HubLifetimeManager<THub>, IDisp
43
37
privateint_internalId;
44
38
privatebool_disposed;
45
39
46
-
/// <summary>
47
-
/// Constructs the <see cref="SqlServerHubLifetimeManager{THub}"/> with types from Dependency Injection.
48
-
/// </summary>
49
-
/// <param name="logger">The logger to write information about what the class is doing.</param>
50
-
/// <param name="options">The <see cref="SqlServerOptions"/> that influence behavior of the SQL Server connection.</param>
51
-
/// <param name="hubProtocolResolver">The <see cref="IHubProtocolResolver"/> to get an <see cref="IHubProtocol"/> instance when writing to connections.</param>
/// Constructs the <see cref="SqlServerHubLifetimeManager{THub}"/> with types from Dependency Injection.
61
42
/// </summary>
@@ -64,11 +45,15 @@ public SqlServerHubLifetimeManager(ILogger<SqlServerHubLifetimeManager<THub>> lo
64
45
/// <param name="hubProtocolResolver">The <see cref="IHubProtocolResolver"/> to get an <see cref="IHubProtocol"/> instance when writing to connections.</param>
65
46
/// <param name="globalHubOptions">The global <see cref="HubOptions"/>.</param>
66
47
/// <param name="hubOptions">The <typeparamref name="THub"/> specific options.</param>
0 commit comments