SqlConnection.OpenAsync () has a code path that does synchronous blocking network i/o to the sql server. my use case is a sql server reboot during a client request. the stack below was called from a u ...
using System; using System.Data; using System.Data.SqlClient; class Context { public int Insert(DataTable table, int batchSize, SqlConnection connection, SqlTransaction trasection = null) { using ...
This is a basic question that I think I know the answer to but I just wanted to double check the consensus view. <BR><BR>I've got a WinService written in C#/.NET 2.0. It's job is to be continually ...