1.

What Does An Orm Solution Comprises Of?

Answer»

• It should have an API for performing basic CRUD (CREATE, Read, Update, DELETE) operations on objects of persistent classes.
• Should have a language or an API for SPECIFYING queries that refer to the classes and the PROPERTIES of classes.
• An ability for specifying mapping metadata.
• It should have a technique for ORM implementation to INTERACT with transactional objects to perform dirty checking, lazy association fetching, and other optimization functions.

• It should have an API for performing basic CRUD (Create, Read, Update, Delete) operations on objects of persistent classes.
• Should have a language or an API for specifying queries that refer to the classes and the properties of classes.
• An ability for specifying mapping metadata.
• It should have a technique for ORM implementation to interact with transactional objects to perform dirty checking, lazy association fetching, and other optimization functions.



Discussion

No Comment Found