The question is really simple, about how to workaround this error:
Fody/RealmWeaver: class 'X' field 'Y' is a 'System.Nullable`1' which is not yet supported.
This is for a DateTime? property. Nullable primitive types are indeed supported.
I know the Java version supports null values. This is about Realm .NET. I was wondering if there's any other way besides doing the old DateTime SomeNullableProperty & bool HasSomeNullableProperty thing.