With the help of Sugar ORM you can get the value by id
Contact title = Contact.findById(Contact.class, 2); String titleStr = title.title; Is it possible to get an id on the contrary by value?
Completely get all the fields can be by value, so obrozom
List<Contact> authors = Contact.find(Contact.class, "name = ?", "Nathan"); I can not figure out how to get exactly the id of the element, where the values of one field, for example "Nathan" ???