Currently is supported the Select method only for single properties, e.g.:
DbLinq.Objects<Person>().Select(x => x.Name);
SELECT p.Name FROM Person p
More complex queries, like:
DbLinq.Objects<Person>().Select(x => new {x.Name, x.Age});
DbLinq.Objects<Person>().Select(x => new Tuple<string, uint>(x.Name, x.Age));
SELECT p.Name, p.Age FROM Person p
don't work.