Hi; I don't know exactly where to ask this question (there are so many forums here) but I know some of you guys here can give some insight. Simple question: If you use an ORM tool would you a) use it in your domain model (business logic) b) use it in DAO's that your domain model uses
It looks interesting to really seperate the ORM stuff into DAO's but somehow it's strange opinions ? Thank you
Kyle Brown
author
Ranch Hand
Joined: Aug 10, 2001
Posts: 3879
posted
0
Use it under a layer of DAO's. That way the DAO's just magically produce objects, and you don't have to worry about how they do it. Kyle