RudeySH

Results 85 comments of RudeySH

For future readers: I forked dynamicbundles a while ago and merged this pull request over there. https://github.com/RudeySH/dynamicbundles

Dynamic Bundles does its thing at runtime. Compiling LESS shouldn't happen at runtime, it should happen design time or during builds. You use a LESS compiler and let Dynamic Bundles...

Deleting the minified file definitely prevents Dynamic Bundles from bundling the same thing twice, but you shouldn't have to do it. It's a problem that is easily fixed in Dynamic...

You could always manually define one or more bundles just for the _Layout, and use Dynamic Bundles for everything else.

Yes you can do that. That's exactly how I'm using bundles right now!

Thanks for the feature request. I have long considered adding a way to edit multiple albums at once, although I've mostly considered doing this so you can edit multiple albums...

Any update on this? After reading this thread I can't help but feel Hangfire queues are pretty useless. Is it still not possible to stop concurrent execution of different kinds...

Can you provide a code example that reproduces this issue?

I'm no SQL expert either. I don't have much experience with collations. If you can figure out what needs to be changed I'm happy to accept the pull request.

I figured it out. `UpdateAll` creates a temporary table, and all temporary tables use the default collation of `tempdb` instead of your own database. I guess `UpdateAll` could be rewritten...