generated from havit/NewProjectTemplate-Blazor
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement GradeRegistrationCriteria in CsOrCp Validation #133. Also a…
…dded some data to the RegistrationCriteriaSeed
- Loading branch information
Showing
4 changed files
with
27 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
namespace MensaGymnazium.IntranetGen3.DataLayer.Repositories; | ||
using System.Linq.Expressions; | ||
using MensaGymnazium.IntranetGen3.Model; | ||
|
||
namespace MensaGymnazium.IntranetGen3.DataLayer.Repositories; | ||
|
||
public partial class GradeDbRepository : IGradeRepository | ||
{ | ||
|
||
protected override IEnumerable<Expression<Func<Grade, object>>> GetLoadReferences() | ||
{ | ||
yield return g => g.RegistrationCriteria; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters