I have searched all over the site But there even not one example of how to make with jdo a many to one relation ship. https://developers.google.com/appengine/docs/java/datastore/jdo/relationships
but I couldn't find out how to do it.
lets say I have this DB:
Cars(CarID,OwnerID,...)
Owner(OwnerID,...)
And I want to create new entity for a new car - how can i make it?
I dont want to make another entity for an owner if the owner is already on the db but if he is not I like to make new owner.
Thanks for any example code or blog link on how to deal with it.
EDIT: Its seems like you think its bidir relationship. So i think you didnt understand me well. lets say we are not talking about Car and Owner we are talking now on Genre and Song
Genre-dont need to know about Song! Song need to know his Genre!
my classes are:
public class Genre {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
long id;
@Persistent
String genre;
} AND:
public class Song{
long id;
@Join(name="GENRE_JOIN")
Genre genre;
}
thanks in advance!