rflechner / LinqToSalesforce

Presentation
https://rflechner.github.io/LinqToSalesforce/
The Unlicense
13 stars 8 forks source link

FEAT: can use take and skip when selecting a member #23

Closed rflechner closed 7 years ago

rflechner commented 7 years ago

Implement member selecting for Take and Skip methods


// using example

var dates = (from a in context.Accounts
                    where a.Name.Contains("Company")
                    select a.CreatedDate)
                             .Skip(3)
                             .Take(4)
                             .ToList();
foreach (var date in dates)
{
    WriteLine($"Date: {date}");
}
rflechner commented 7 years ago

@lancerdima this PR could interest you.