-
Notifications
You must be signed in to change notification settings - Fork 55
Ideas
Steven Kirk edited this page Jan 12, 2018
·
2 revisions
This would be nice:
var query = connection.Query.Repository(owner, name) ...
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.