C#のSQLiteで複合キーに注釈を付ける方法はありますか? 次のコードは、テーブルに複数の主キーがあることを示す例外をスローします。
userDatabase.CreateTable<MyObject>();
//class file
[SQLite.Table("MyObject")]
public class MyObject
{
[SQLite.PrimaryKey]
public int IdOne { get; set; }
[SQLite.PrimaryKey]
public int IdTwo { get; set; }
}