Ferdinando Papale

Results 46 issues of Ferdinando Papale

TODO - [ ] Remove unused usings: right now we're adding all the usings in the world but we should probably be more conservative. - [ ] Generate parameterless ctor...

cla: yes

At the moment the following doesn't raise any weaving error: ```csharp [Required] public int? TestInt { get; set; } ``` This should not be possible. Besides, the weaving error coming...

We are getting a "Read access violation" in here: https://github.com/realm/realm-core/blob/6b05da97d0a9bd0bf61522a0342222443b35e196/src/realm/sync/subscriptions.cpp#L708 when refreshing the `SubscriptionSet` (line 335) in the callback of `get_state_change_notification `: https://github.com/realm/realm-dotnet/blob/db0d9023937d06c9df089257a09fd4c16a4ca530/wrappers/src/subscription_set_cs.cpp#L329-L350 This happens only when previously we committed...

This PR fixes a possible client reset error / loop. This would happen in a situation like: ```csharp public MainPage() { InitializeRealm(); } private async void InitializeRealm() { Session.Error +=...

cla: yes

At the moment the code path for getting the default path for `Realm` and `App` is the same, and thus the exception for both is the same when the path...

The current documentation for `MapToAttribute` mentions that it can be used only with properties, but actually it can be used also with classes. We need to improve the documentations to...

The .NET SDK tried to change the implementation of `RefreshAsync` in order to solve an async issue brought up by a user (https://github.com/realm/realm-dotnet/issues/2739). The new implementation (https://github.com/realm/realm-dotnet/pull/2783), even though seemed...

At the moment `CollectionChangeSet` support `modifications`, but this can indicate both that some properties of the object at that index changed, or that object was replaced by another one. It...

When the original html has an empty title, `MoveCssInline` returns an html with a self-closing title, that make the page not work on browsers. For example, take in consideration the...

I am trying to test manually if the diagnostics emitted by a source generators are correct. To to do so I've added a reference to the source generator project with:...