我有一個查詢,其中我必須選擇類型爲字節的數據。在petapoco查詢字節[]
byte[] data
我的查詢如下:
private IEnumerable<dynamic> GetData(int fileID){
return Connection.db.Query<dynamic>("select Data from [File] where id = @0", fileID.ToString());
}
byte[] actual = file.GetData();
,我想找到的長度如下:
actual.Length
上述的問題是,我一定要找到長度但GetData返回實際的動態對象。
如何檢索數據並保存其長度? 有沒有更好的方式來查詢PetaPoco中的byte []?
什麼是db類型?你有錯誤嗎? – Schotime 2012-03-21 09:59:12