I am using DDD approach with c# and for data storage I am using SQL server. Also I am using code first approach with fluent api in order to build database objects from domain.
Since I am using domain to write data and finders to read data from SQL, I was thinking about an approach where fluent api in write mode would be substituted with DB first approach (EF to objects) in order to benefit from EF navigational properties when creating read only finders logic.
Would this be a logical think to do here, or this would represent an anti-pattern that would do more damage?