https://github.com/praeclarum/sqlite-netにある sqlite-net ライブラリについて簡単な質問があります。
問題は、コレクションとカスタムオブジェクトがデータベースに挿入される方法と、必要に応じてクエリ時にそれらを元に戻す方法がわからないことです。
たとえば、次のモデルを使用します。
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
private string _name; // The name of the subject. i.e "Physics"
private ObservableCollection<Lesson> _lessons;