这是我第一次在windows 8 app中使用SQLite数据库,我有两个类如下:
class Parent
{
public int Id { get; set; }
public string Name { get; set; }
public List<Child> Children { get; set; }
}
class Child
{
public int Id { get; set; }
public string Name { get; set; }
public Parent Par { get; set; }
}
有没有办法在这两个类中创建一对多的关系,当我查询一个Parent实例时,我可以通过par.Children属性获取Child列表? 另一个问题,如何让Id属性自动增加为身份值?
答案 0 :(得分:1)
我现在面临同样的问题,我开始尝试这个“Devart LinqConnect for Metro” http://www.devart.com/linqconnect/metro-database-access-with-linqconnect.html http://blogs.devart.com/dotconnect/linqconnect-for-metro-quick-start-guide.html
希望它可以帮到你