Dariusz Lenartowicz
Dariusz Lenartowicz
Hi @khellang 😃 I'm just cloned branch for net8 and adopted source code into my project. 😄 Now I can wait for released version of net8 and newest scrutor 😃...
> > I hope that Scan will have appropriate extensions for keyed services also. 👍🏻 > > What does that mean? How do you envision using keyed services with Scrutor?...
Hi @khellang :) How about this? Will be any chance for this? 😃
Hi @khellang ? How about now, after NET8 premiere? 😄
> And all the formatting changes that make it hard to decipher what you've changed, lol. Sorry for that. It's by habit. 😄 > Ideally if we can find a...
Be careful with MERGE on MS SQL without transaction. https://www.mssqltips.com/sqlservertip/3074/use-caution-with-sql-servers-merge-statement/
Proper multi-statement per network packet is a good choice. We are using [System.Data.SqlClient.SqlCommandSet](https://github.com/Microsoft/referencesource/blob/master/System.Data/System/Data/SqlClient/SqlCommandSet.cs) but it is **internal**. Thanks to [NHibernate](https://github.com/nhibernate/nhibernate-core/blob/master/src/NHibernate/AdoNet/SqlClientSqlCommandSet.cs) we are using exactly [this implementation](https://gist.github.com/Scooletz/e281be257f05d622a7e2). This solution give us...