Hi AllI have several databases set to read commited snapshot isolation level. Tempdb is configured according to best practices, but I don't see it's used much.The application uses EF6, and it calls the stored procedures in the following wayDatabase.ExecuteSqlCommandAsync("exec dbo.spSync_MatchesByTenant @MatchesGroup, @TenantId", parameter, licenseIDParam);Is it possible the code does not use the read commited snapshot isolation level of the database?
↧