Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 449 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 449 Bytes

DataApi client for Aurora Serverless

AWS.RDSDataService wrapper for .NET

Nuget AuroraDataApiClient

Allows queries like

var person = await client.QueryFirst<Person>(
    "SELECT \"Id\", \"Name\" FROM person WHERE \"Id\"= :id",
    new SqlParameters().Add("id", id));

Full example can be found in example folder