Skip to content

Full Implementation of SQLServer Change Data Capture (CDC) API

License

Notifications You must be signed in to change notification settings

OscarKoo/WhatsCdc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);

About

Full Implementation of SQLServer Change Data Capture (CDC) API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages