-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to run example app #269
Comments
At what step are you stuck? Have you generated the code with |
Thank you it works. Last time i also run this command but it didn't generate code for Dao.This time everything works ok |
Is it possible to declare private fields in Entity Model? |
yeah, I'll try to do an example below: @entity
class Dog {
@primaryKey
final int id;
final String name;
@ColumnInfo(name: 'nick_name')
final String nickName;
@ColumnInfo(name: 'owner_id')
final int _ownerId;
Dog(this.id, this.name, this.nickName, this._ownerId);
} in this case, If you have other questions, please open a new issue, I'll be closing this since the original question was solved. |
i want to run the example app in my ios simulator. Can you please help me regarding this
The text was updated successfully, but these errors were encountered: