Hello, I don't know if this is a EF Lazyness problem or real EF bug, because this irregularity only happens sometimes ( aprox. 1 in 10 times in the same code)
The problem is that, sometimes, for some reason, some random navigational properties (not always the same) are not loaded with lazy loading active and proxy creation active too.
The example is a form with +- 40 fields that represents Person, that has a Relational connection to a lot of other tables, and that other tables, to other tables.
I'm using lazy loading because it seems to me the best approach because of the number of tables that are involved in the Form. The problem is that some fields appear Blank, because some nav. properties not load.
The Real question is, Is there, or anyone know a reason for EF stop lazy loading navigational properties or only loads "half of them"?
The sample code is too complex and private(enterprise) to share here.
The problem is that, sometimes, for some reason, some random navigational properties (not always the same) are not loaded with lazy loading active and proxy creation active too.
The example is a form with +- 40 fields that represents Person, that has a Relational connection to a lot of other tables, and that other tables, to other tables.
I'm using lazy loading because it seems to me the best approach because of the number of tables that are involved in the Form. The problem is that some fields appear Blank, because some nav. properties not load.
The Real question is, Is there, or anyone know a reason for EF stop lazy loading navigational properties or only loads "half of them"?
The sample code is too complex and private(enterprise) to share here.