Daniel Stout
Daniel Stout
I'm interested in that first item as well (having the MemoryCache items be cloned, but not the DistributedCache ones) I see the same request here: https://github.com/ZiggyCreatures/FusionCache/issues/194 That used the same...
Sounds reasonable to me! Making it configurable per call could be useful in cases where some entities are immutable and others are mutable and so must be cloned.
For anyone else arriving from Google: I wasn't actually seeing this with ML.Net at all, but I was seeing it in a different situation with Lazy and only in debug...
I'm getting this StackOverflow on `WriteRecords` as well. Simplest class: public class ReconcileRow { public int RegistrationId => Registration.Id; [Ignore] public Registration Registration { get; set; } } The Registration...
Changing the writing to be like this: var csv = new CsvWriter(writer); csv.Configuration.IgnoreReferences = true; csv.WriteRecords(result); Does work - but of course with this I can't use any reference types.
I'm running into this exact issue. - Running `vue-cli-service serve` prints two URLs, both of which I can view from the computer I'm running it on ``` App running at:...
I'm not a fan of this change. My workflow is to view the changes within a file and write the commit message as I stage sections within it. With this...
I see what you mean back on 5.2 where once you've staged something, the staged diff will be shown when you focus the commit window. I actually do think that...
@mstv It seems like these could both co-exist? Your change makes it so the auto-select is configurable. I think that's great, more options for users with unique workflows. But this...
Belated update on this - it seemed to be caused by a corrupt Git repository. Cloning a fresh copy fixed the issues I was seeing in Git Extensions.