我有一個SQLite數據庫在通用的Windows應用程序,並具有多類型(BOOL,INT和答:64)。我需要通過ID從我的表中返回所有值。最好的辦法值
// 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; }
我嘗試返回一個List,但我認爲我不能返回不同類型。
什麼是從一個SQLite數據庫一起返回此值的最佳方法?
感謝您的任何幫助。
是的,你可以作爲'VAR OBJ =新名單
這是工作中定義的數據類型。謝謝。 –