Pour un scénario feu et oubli, vous pouvez créer un nouveau thread et ne jamais bloquer le thread principal en attendant qu'il se termine :
new Thread(() => {
// use ADO.NET to do the database query
}).Start();
Pour un scénario feu et oubli, vous pouvez créer un nouveau thread et ne jamais bloquer le thread principal en attendant qu'il se termine :
new Thread(() => {
// use ADO.NET to do the database query
}).Start();