Skip to content

Querying a specific set of data properties (more than one) #60

@un-tone

Description

@un-tone

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions