Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 862 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 862 Bytes

Full Implementation of SQLServer Change Data Capture (CDC) API

Install the NuGet package.

How To Use

Some commonly used methods

Use ".Cdc()" to access the method

These methods are enhanced, and they will also call CdcApi internally.

using var connection = new SqlConnection("connectionString");
await connection.OpenAsync().ConfigureAwait(false);
var result = await connection.Cdc().XXXXXX().ConfigureAwait(false);

Access the full implementation of CDC API

Use ".Cdc().Api()" to access the api

If you don't like the above commonly used methods and want the full control of CDC API.

using var connection = new SqlConnection("connectionString");
await connection.OpenAsync().ConfigureAwait(false);
var result = await connection.Cdc().Api().XXXXXX().ConfigureAwait(false);