I use the database-first approach, in which layer should I add the edmx model?

  • add to DAL (Data Access Layer) - Ruslan_K
  • How then to throw entities from DAL in PL? - j_query
  • Well for good in BLL (Business Logic Layer) we get from DAL Entity , convert to EntityDto and transfer to PL. (for reference Dto ) - Ruslan_K
  • If I want to implement the mvc pattern in PL, then it turns out that EntityDTO needs to be transferred to the view without adding the viewmodel and converting the EntityDTO into view models? - j_query

0