-
I have a series of DTOs with common properties (Id, CreatedOn, CreatedBy) etc that I have split out as a BaseDto. A primitive example:
When I retrieve my SampleDtos, the back-end query being generated by EntityFramework looks like this (note that Id isn't included): If, however, I have my entity's properties all directly within the DTO, it works as expected:
Will generate:
Have I discovered an issue/limitation, or am I doing something wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Most likely a bug if that's what you're seeing. PRs are welcome. |
Beta Was this translation helpful? Give feedback.
Most likely a bug if that's what you're seeing. PRs are welcome.