📄️ Configuration
To use EasyORM in your Maven project, you should add the following dependency to your pom.xml file:
📄️ Models creation
The only requirement is to respect the convention of JavaBeans
📄️ Customizing Models
When creating your model classes, you can use annotations to customize the table name, primary key, and columns. Here are the available annotations: @Table, @Column, @Id, @Ignore.
📄️ Mapping Relations
EasyORM provides easy and flexible options for mapping relations between different classes. By following the Java convention of implementing relationships using instance variables and collections, EasyORM can handle different types of relationships between your classes.
📄️ Managing Inheritance
We don't need to do anything to handle inheritance in our ORM.
🗃️ Query Builder
3 items