E.F 4.1 CodeFirst,Generic Repository Pattern,UoW,MVP
Hİ ,
I developed a windows form project with using E.F 4.1 CodeFirst model, Generic RepositoryPattern, Unit Of Work and MVP.
I made 4 layers which are like below.
DataAccessLayer (Entities like tblCustomers, tblUsers, Repositories like CustomerRepository,UserRepository)
BusinessLayer
PresenterLayer
UI -->Windows Forms.
My Problem is carrying exceptions beetween the layers and carriying the data between the layers. I made a DTO datatransfer objects which names like CustomerDto, UserDto.
When I query generic repository forexample CustomerRepository<tblCustomers> it returns tblCustomer type data , but i want to fill CustomerDto class , so i have to write query business layer, But i have to this job in Data Access Layer , I dont want to carry tblCustomer entities between the layers.
Is it correct what i have done, if wrong how can i do..
Thanks.
Best Regards.