var people = db.Fetch<Person>("where firstname = @0 and lastname = @1",
"George", "Clooney");
lub za pomocą NPoco (opartego na PetaPoco) jest to również możliwe
var people = db.FetchWhere<Person>(x=>x.FirstName == "George"
&& x.LastName == "Clooney");