forked from androidannotations/androidannotations
-
Notifications
You must be signed in to change notification settings - Fork 0
Ormlite
pyricau edited this page Aug 17, 2012
·
1 revision
Since AndroidAnnotations 2.7
Thanks to Johan Poirier, you may inject your OrmLite DAOs with the @OrmLiteDao annotation.
The @OrmLiteDao has two mandatory attributes :
-
helpershould hold the class of your database helper (which should extendandroid.database.sqlite.SQLiteOpenHelper) -
modelshould point to the model class that the DAO relates to. It should match the type of the first generic parameter of your Dao
Usage:
@EActivity
public class MyActivity extends Activity {
// UserDao is a Dao<User, Long>
@OrmLiteDao(helper = DatabaseHelper.class, model = User.class)
UserDao userDao;
@OrmLiteDao(helper = DatabaseHelper.class, model = Car.class)
Dao<Car, Long> carDao;
}AndroidAnnotations was created by Pierre-Yves Ricau and is sponsored by eBusinessInformations.
04/11/2012 The 2.7 release is out
- Get started!
- Download
- Cookbook, full of recipes
- List of all available annotations
- Release Notes
- Examples
- Read the FAQ
- Join the Mailing list
- Create an issue
- Tag on Stack Overflow