RudeySH

Results 85 comments of RudeySH

The latest version, 1.0.11, will ensure that the default database collation is used for *char columns in temporary tables. However, if you're not messing with the default collation, but instead...

Under the hood, UpdateAll uses SqlBulkCopy which uses row locks by default. At least, that's what the documentation says. Perhaps SQL Server is escalating the row locks to page locks...

You're right, my bad. The `SqlBulkCopyOptions` will only be used for inserting data into the temporary table. Perhaps you can implement a ` IDbCommandInterceptor` that rewrites the UPDATE statement before...

Did you have any luck implementing an interceptor?

Support for table hints will be added in v2. I have just published [2.0.0-alpha.1 on NuGet](https://www.nuget.org/packages/RudeySH.EFUtilities/2.0.0-alpha.1). This is all subject to change, but right now it works like this: ```...

I have tried that workaround but I don't like it. The jobs don't really get paused, they just immediately get cancelled when they are triggered, resulting in "Succeeded" state.

You can programmatically "disable" them by setting the CRON expression to something silly like `"0 0 31 2 *"`. ``` RecurringJob.AddOrUpdate(() => Foo(), "0 0 31 2 *"); // February...

This would be a useful feature to have, but I don't think there's a way to implement this feature so such albums would be detected automatically. Maybe I could let...

I also need this. I wanted to create a server filter that instantiates and starts a profiler that will automatically be stopped in OnPerformed. However, I want to be able...

That's a shame. Violentmonkey is open source while Tampermonkey is not, which made Violentmonkey the clear winner if you care at all about your privacy. It's been months, but I'm...