как создать коллекцию (1: n) отношения

Я реализую базу данных SQLite в моем приложении для Магазина Windows (WinRT). Я хочу, чтобы отношения между двумя таблицами (1: N) Книга (1) - Глава (N)

class Book
{
    [SQLite.AutoIncrement, SQLite.PrimaryKey]
    public int Id { get; set; }
    public String Title { get; set; }
    public String Description { get; set; }
    public String Author { get; set; }
    public List Chapters { get; set; }

    public Book() 
    {
        this.Chapeters = new List();
    }
}

я получил

-       $exception  {"Don't know about     System.Collections.Generic.List`1[Audioteka.Models.Chapter]"}    System.Exception {System.NotSupportedException}

+       [System.NotSupportedException]  {"Don't know about System.Collections.Generic.List`1[Audioteka.Models.Chapter]"}    System.NotSupportedException

+       Data    {System.Collections.ListDictionaryInternal} System.Collections.IDictionary {System.Collections.ListDictionaryInternal}
    HelpLink    null    string
    HResult -2146233067 int
+       InnerException  null    System.Exception
    Message "Don't know about System.Collections.Generic.List`1[Audioteka.Models.Chapter]"  string

Что я делаю неправильно ?

Ответы на вопрос(2)

Ваш ответ на вопрос