ORM on which standards i can select?
Posted
by
just_name
on Stack Overflow
See other posts from Stack Overflow
or by just_name
Published on 2010-12-28T08:31:40Z
Indexed on
2011/01/03
10:53 UTC
Read the original article
Hit count: 234
Q: This question is about how can i figure or select the convenient ORM to my web application. when beginning a new web application,What are the criteria on which i can consider a specific ORM is better than another one for my project or case(web application)?
another part of my question : when i begin any web application i use three layers:
- the DB layer (which contains the connections , and handle the CRUD operations )
- the Managers layer(the Data Access Layer) a class for each table on my db (loosely coupled with the previous layer )it contains the CRUD operations for the specific table and the other required operations.
- the interface layer..
and i use Object Data source.Is that considered as an ORM (as a concept) or I'm wrong in understanding this concept.
note:I still a beginner in this field ,, and every day i learn more about web development. please i want explanation and suggestions for this point.
Thanks in advance.
© Stack Overflow or respective owner