mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2025-12-19 03:55:11 +00:00
Cleaned up readme sample
This commit is contained in:
@@ -11,7 +11,10 @@ namespace ReadmeSample.Extensions
|
||||
public static class UserExtensions
|
||||
{
|
||||
[Projectable]
|
||||
public static Order GetMostRecentOrderForUser(this User user, DateTime? cutoffDate)
|
||||
=> user.Orders.Where(x => x.CreatedDate >= cutoffDate).OrderByDescending(x => x.CreatedDate).FirstOrDefault();
|
||||
public static Order GetMostRecentOrderForUser(this User user, bool includeUnfulfilled) =>
|
||||
user.Orders
|
||||
.Where(x => !includeUnfulfilled ? x .FulfilledDate != null : true)
|
||||
.OrderByDescending(x => x.CreatedDate)
|
||||
.FirstOrDefault();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user