Prerequisites
An instance of SQL Server Express, accessible as .
.
At startup, each endpoint creates its required SQL assets, including databases, tables, and schemas.
The sample creates a database named SQLServerSimple
.
Running the sample
- Start both the Sender and Receiver projects.
- At startup, Sender sends a message to Receiver.
- Receiver handles the message in the matching handler.
Code walk-through
Configuring the SQL Server transport
var transport = endpointConfiguration.UseTransport<SqlServerTransport>();
var connection = @"Data Source=.\SqlExpress;Database=SqlServerSimple;Integrated Security=True;Max Pool Size=100";
transport.ConnectionString(connection);