Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm implementing SQLite database in my Windows Store application (WinRT). I want to relation between two tables (1:n) Book (1) - Chapter (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<Chapter> Chapters { get; set; }

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

I get

-       $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

What am I doing wrong ?

share|improve this question
Is there more to the error message? An exception, perhaps? – Reacher Gilt Oct 30 '12 at 18:54
This additional information is message of the exception that I get – Fixus Oct 30 '12 at 20:04
I've never seen an error message "Don't know about System.Collections.Generic.List`1" before. Are you sure you're copying and pasting the exact error message? – Bobson Oct 30 '12 at 20:31
@Bobson I've updated my message and pasted more thata from exception after app breaks – Fixus Oct 30 '12 at 20:36
I can't find anything in the documentation that indicates that it supports relationships between tables at all. That would lead me to believe that it only can understand basic value types which have a direct translation to SQL column types (int/long, float/double/decimal, string, etc). So I can't help, and I can't point to anything that could help. – Bobson Oct 30 '12 at 20:50

1 Answer

up vote 1 down vote accepted

Just to follow up on my comment with a bit more research - SQLite-net doesn't support anything which can't be directly mapped to the database. See here for why:

The ORM is able to take a .NET class definition and convert it to a SQL table definition. (Most ORMs go in the other direction.) It does this by examining all public properties of your classes and is assisted by attributes that you can use to specify column details.

You can look into using a different ORM to actually access your data (I use Vici Coolstorage), if that's what you're trying to do, or simply remove the List<Chapters> from your class and add a BookID field to the Chapters class. That's how the database would represent it.

For purposes of working with it, you could add one of these to your class:

List<Chapters> Chapters { 
  get { 
     return db.Query<Chapters> ("select * from Chapters where BookId = ?", this.Id); 
  } 
}

or

List<Chapters> Chapters { 
  get { 
     return db.Query<Chapters>.Where(b => b.BookId == this.Id); 
  } 
}

That would at least let you pull the list easily, although it would be slow because it hits the database every time you access it.

share|improve this answer
ok but I need the collection of chapters in my Book object :) I see that I should ignore chapters for ORM and populate it manualy while picking up the object. Hmm it's a big minus of SQLite :/ – Fixus Oct 31 '12 at 6:39
@Fixus - SQLite-net is probably not the ORM you want to be using. It seems to be strictly for database creation and population, with query features being an afterthought. SQLite itself doesn't have the issues, but you need a different way to communicate with it. – Bobson Oct 31 '12 at 17:29
@Fixus - I also added a way to populate Chapters, although it's not a great way to handle it. – Bobson Oct 31 '12 at 17:32
can you recomend some diffrent ways ? In every tutorial I've bumped on sqlite-net that is why I'm using it. Luck me that I can easly overcome this problem by little manual work so in THIS project this isn't very big problem but I would like to know better solution for the future. Thanks for the update – Fixus Oct 31 '12 at 17:33
@Fixus - I use Vici Coolstorage (and I fixed the link to it in my answer), but I had some issues getting it set up. I've heard good things about Catnap, and there's always the various answers in this question. – Bobson Oct 31 '12 at 17:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.