Skip to content

Shuttle/Shuttle.Hopper.SqlServer.Subscription

Repository files navigation

Shuttle.Hopper.SqlServer.Subscription

Sql Server implementation of the ISubscriptionQuery interface for use with Shuttle.Hopper.

Configuration

services.AddDataAccess(builder =>
{
	builder.AddConnectionString("shuttle", "Microsoft.Data.SqlClient", "server=.;database=shuttle;user id=sa;password=Pass!000");
});

services.AddSqlQueue(builder =>
{
	builder.AddOptions("shuttle", new SqlQueueOptions
	{
		ConnectionStringName = "shuttle"
	});
});

The default JSON settings structure is as follows:

{
  "Shuttle": {
    "SqlQueue": {
      "ConnectionStringName": "connection-string-name"
    }
  }
}

Options

Option Default Description
ConnectionStringName The name of the connection string to use. This package makes use of Shuttle.Core.Data for data access.

About

Sql Server implementation of the ISubscriptionService interface for use with Shuttle.Hopper.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages