Belgrade-SqlClient
Belgrade-SqlClient copied to clipboard
Small async ADO.NET helper library
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 10.0.3 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...
Would be possible to implement this library for other db systems as MySql or Postgres?
Hi, is it possible to pass User-Defined Table Types in `await sqlCmd .Proc("SomeStoreProcedure") .Param("aUserDefinedTypeParam", aSqlParameterInstance)`? Thanks
Hi Jovan Thank you for the nifty tool. In my REST api project, I am using the SqlPipe.Sql(cmd).Stream(ms, "[]") but for every cmd, I need to pass a new connection...
Thank for the sqlclient . Its been very useful in my project requirement. I need the ability to pass the appname in the connection string and with the 1.14 build,...
I have a Controller method as below: ` [HttpGet] public async Task NonExistentTable() { await SqlPipe .OnError(ex => { this.Response.StatusCode = 500; throw ex; } ) .Stream("select * from NonExistentTable...