MichaelLHerman
MichaelLHerman
To me it looks like there is a problem in the view model code. There is a new instance of the command created on every "get". The instance that RaiseCanExecuteChanged...
Just for the record, it's not just EF Core. I have also experienced problems that only appear in Release mode when using Autofac with its autogenerated Factory registrations  https://autofac.readthedocs.io/en/latest/resolve/relationships.html#dynamic-instantiation-func-b...
@zhiyuanliang-ms Using ASP.NET backend which uses Microsoft.FeatureManagement, passing along a list of enabled features to the user in an API call upon login. Thanks, will look into a custom feature...
@jamescrosswell The only frames that are omitted by "Most relevant" are pthread_kill and abort. Since the frames below it are mono/xamarin I assume this is a managed exception. ``` Thread...
@mattjohnsonpint scope.Clear and .WithScope don't exist anymore, so the samples above no longer work. I was looking at this issue for means to introduce IsGlobalScopeEnabled = false on MAUI mobile...
While this is interesting, I don't think this is a security vulnerability. `objection` lets you (a security tester) bypass any biometric-authentication system dialog regardless of wether its accessed through this...
Class implements IEmbeddedObject, class is used in a collection property off of an IRealmObject
This only happens when the class already has a `partial void OnPropertyChanged` defined
As a workaround, did you try switching to the MvxStrongCommandHelper? (register in Setup.InitializeFirstChance) Mvx.IoCProvider.RegisterType(); I had a similar issue in my app where RaiseCanExecute wasn't updating the Enabled state of...
@sensibleworld I'm using font awesome in a MAUI app (on iOS and Android) and have the same clipping problem when upgrading v6 to v7. The code that renders a glyph...