You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After switching to the source generator, I get that issue at runtime:
System.Exception: .ctor has no valid implementation for <DbHs, DateTimeOffset> with property expression x => x.DateLastUpdated.
at NotifyPropertyExtensions.WhenChanged[DbHs,DateTimeOffset](DbHs objectToMonitor,
That means the generator has failed to generate the source code for this WhenChanged:
public partial class DbHotspot : IRealmObject
{
public DateTimeOffset DateLastUpdated { get; set; } = DateTimeOffset.Now;
[PrimaryKey]
public string Id { get; set; }
}
To get IRealmObject and the associated generator, install the Realm nuget.
All IRealmObject objects implement INotifyPropertyChanged through a source generator.
I switched back to the version of marble without the source generator for now.
Any idea what would cause this ?
The text was updated successfully, but these errors were encountered:
After switching to the source generator, I get that issue at runtime:
That means the generator has failed to generate the source code for this WhenChanged:
Where hs is :
To get IRealmObject and the associated generator, install the Realm nuget.
All IRealmObject objects implement INotifyPropertyChanged through a source generator.
I switched back to the version of marble without the source generator for now.
Any idea what would cause this ?
The text was updated successfully, but these errors were encountered: