UdiAzulay
UdiAzulay
any success to use conversion from non null to nullable type? (without excluding the property using NonMapped)
found an ugly solution using ValueConverter(optionally) and the below reflection field update prop.Metadata.GetType().GetField("_isNullable", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).SetValue(prop.Metadata, true);
seems that the above suggested ugly workaround only works for "_fastQuery" and fails with "_shapedQuery" so i had to put another ugly solution for that: static EntityContext() { var localMethod...