mirror of
https://github.com/zoriya/EntityFrameworkCore.Projectables.git
synced 2025-12-06 05:56:10 +00:00
Fixed broken sample
This commit is contained in:
@@ -24,7 +24,7 @@ namespace BasicSample
|
||||
|
||||
[Projectable]
|
||||
public string FullName
|
||||
=> $"{FirstName} {LastName}";
|
||||
=> FirstName + " " + LastName;
|
||||
|
||||
[Projectable]
|
||||
public double TotalSpent => Orders.Sum(x => x.PriceSum);
|
||||
|
||||
Reference in New Issue
Block a user