JarRami

Results 3 issues of JarRami

If I have a table like ``` public class NullableHolder { [Key] public int ID { get; set; } public int? Value { get; set; } } ``` And I...

If I have a table like ``` public class NullableHolder { [Key] public int ID { get; set; } public int? Value { get; set; } } ``` And I...

If I have tables setup for [table splitting](https://learn.microsoft.com/en-us/ef/core/modeling/table-splitting) like ``` public class IntEntity { public int ID { get; set; } public int Value { get; set; } public virtual...