WP8 プロジェクトにhttps://github.com/peterhuene/sqlite-net-wp8を使用しています。オブジェクトの自動キャスト (Query など) なしで joins イベントを使用したい。クエリを実行して結果行を手動で取得する方法はありますか?
質問する
822 次
1 に答える
3
はい、任意のクエリを実行して、手動で行をフェッチできます。これはあなたを助けるかもしれません。まず、次のようなプロパティを保持するクラスを作成する必要があります -
public class student
{
public int id{get;set;}
public string StudentName{get;set;}
public string ClassName{get;set;}
}
After that create connection with database`.
You want to select id,StudentName from tableOne and ClassName from tableTwo
string query="SELECT tableOne.id,tableOne.StudentName.....your query with join";
SQLiteCommand command = dbcon.CreateCommand(query);
var Data = command.ExecuteQuery<student>();
于 2013-11-14T15:08:52.540 に答える