I'm using Simple.Data to select data from a table and am wondering if there is a way to select the top 10 records from the table.
Something like:
var result = _database.UserList.All()
.Select(_database.UserList.Name).Take(10) -- or .Top(10)