I have table A, B, C,D.
Table D have forgienKey relationship columns(A1,B1,C1) with table A, B, C and Column C1 in table D is nullable column, because of it While loading table D using Include() nullable column row got skipped as below
_context.Entry(F).Collection(x=>x.D).Query().Include(x=>x.A).Include(x=>x.B).Include(x=>x.C).Load();
I could able to get value for Id's 1,3,4 using above Query but full row ID 2, 5 is not in the collection list because of the null value.
If C1 has null value I should get remaining column information. Help needed plz