It's the first time I work with SQLite DB, I'm trying to add a List in my table.
This is my class :
public DbF(string title, string content, bool myfavoris, int partner, List<string> tags)
I add like that :
obj.Insert(new DbFavoris(title, content, true, partner, tags));
I got this error :
Don't know about System.Collections.Generic.List`1[System.String]
I realized after searching, we can't add directly a List but I don't know how to do because I retrieved my tags with a JSON I put the data immediately in a List.