Windows Phone, sqlite and relationships -



Windows Phone, sqlite and relationships -

is possible have relations in sqlite on windows phone? right have 2 info models, artist , album should have many-to-many relationship.

normally like

public class artist { public list<album> albums { get; set; } } public class album { public list<artist> artists{ get; set; } }

but doesn't work on windows phone.

so question is:

are relationships possible in sqlite , wp? is there orm me use, or need retrieve , populate every entity hand?

sqlite windows-phone-8

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -