Skip to content

sh-navid/Zone.MicroAndroidORM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MicroAndroidORM

MIT License

@ORMTable(TableName="TestEntityTable")
public class TestEntity {
    @ORMField(Name = "ID", isPrimaryKey = true)
    private int id = 0;//Initialization is recommended for ORM ***very important***

    @ORMField(Name="Name",isUnique=true)
    private String name="";

    @ORMField(Name="InsertionDate")
    private String date="";
}

Releases

No releases published

Packages

No packages published

Languages