私はSQLite DBをUniversal Windows APPに持っていて、マルチタイプ(bool、int、Uint64)を持っています。 IDからテーブルのすべての値を返す必要があります。SQLiteの値を返す最も良い方法
// Id Module
[PrimaryKey]
public int id { set; get; }
// Fix comm state
public bool commState { set; get; }
// Fix home sensor state
public bool homeSensor { set; get; }
// Fix up sensor state
public bool upSensor { set; get; }
// Fix down sensor state
public bool downSensor { set; get; }
// Fix actual tier position
public int actualTier { set; get; }
// Fix actual step of encoder
public UInt64 encodPosition { set; get; }
私はリストで返そうとしますが、私は別のタイプのものでは返せません。
SQLite DBからこの値を一緒に返す最良の方法はありますか?
ありがとうございました。
はい、あなたはリストを作成することができる場合'var obj = new List
それは仕事です。ありがとう。 –