Skip to content
Steven Kirk edited this page Jan 12, 2018 · 2 revisions

@grokys Ideas

Root query off the connection

This would be nice:

var query = connection.Query.Repository(owner, name) ...

Automatically fill properties of a leaf type

Might be nice to be able to go:

public class PullRequest
{
    public string Number { get; set; }
    public string Title { get; set; }
}

var query = new Query().Repository(owner, name).PullRequest(number).Select<PullRequest>()

And have a new PullRequest created with its members automatically selected and filled.

Clone this wiki locally