Exemplo n.º 1
0
 public IEnumerable <T> ExecuteQuery <T> () where T : new()
 {
     return(ExecuteQuery(_conn.GetMapping(typeof(T))).Cast <T> ());
 }
Exemplo n.º 2
0
 public TableQuery(SQLiteConnection conn)
     : this(conn, conn.GetMapping(typeof(T)))
 {
 }
Exemplo n.º 3
0
 public TableQuery(SQLiteConnection conn)
 {
     Connection = conn;
     Table      = Connection.GetMapping(typeof(T));
 }
Exemplo n.º 4
0
 public IEnumerable <T> ExecuteDeferredQuery <T>()
 {
     return(ExecuteDeferredQuery <T>(_conn.GetMapping(typeof(T))));
 }