1

这是我第一次在 Windows 8 应用程序中使用 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 属性自动递增为标识值?

4

1 回答 1

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

希望对你有帮助

于 2013-01-22T08:22:47.717 回答