Domagoj Medo
Domagoj Medo
Ok, maybe not each line, but there are a lot of lines that assign some value and removing those would be very useful. Or when constructing EF linq query, if...
But it won't remove `PropA = somethingElse` part, correct? ``` var x = new MyClass { PropA = somethingElse } ``` or `.Where(x => x.Id == request.Id)` ``` var exists...
For 'easy' mutator it would probably not be per line I'm guessing it would be trivial to not remove single curly braces, class declarations, method declaration and using statements? Is...
Is mutator that removes lines but skips some that will obviously produce compile errors (lines with only open/close curly brace, class/method declaration, using statements) something that you would consider?
What do you mean by "kind" of logging? I use Microsoft.Extensions.Logging if that's what you meant
``` using Hangfire; var host = Host.CreateDefaultBuilder(args) .ConfigureServices((context, services) => { services.AddTransient(x => new AutomaticRetryAttribute { Attempts = 0 }); services.AddScoped(); services.AddScoped(); services.AddTransient(); services.AddHangfire((provider, configuration) => { configuration.UseActivator(provider.GetService()!); configuration.UseSqlServerStorage("server=.;database=Hangfire;trusted_connection=True;"); configuration.UseFilter(provider.GetRequiredService());...
@odinserj why not also close PR since it will never be merged because of breaking changes?
Any updates for this? @mattleibow
Bumping for support
Yea, I have the same issue with transactions, any info on a workaround or fix?