有关支持Windows 8 / WP8关系的ORM的任何建议吗?
class Person {
int id;
int Name;
List<Address> Addresses;
}
class Address {
int id;
string Street;
string Country;
}
如果您确实在人身上创建了表,那么它也应该创建Address表,而对Person的任何选择查询也会返回相关的地址。我知道EF / nHibernate会这样做,但遗憾的是我们不再使用WinRT的System.Data了。
答案 0 :(得分:0)
你最好选择使用sqlite-net这是SQLite的微ORM
蒂姆豪雅在这里有一篇文章。 http://timheuer.com/blog/archive/2012/05/20/using-sqlite-in-metro-style-app.aspx