This commit is contained in:
DyCTaTOR 2024-05-27 21:26:21 +04:00
parent 58063233d7
commit 0c5cb4e121

View File

@ -1,4 +1,5 @@
using System; using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
using System.Linq; using System.Linq;
@ -31,7 +32,12 @@ namespace UniversityDatabaseImplement.Implements
using var context = new UniversityDatabase(); using var context = new UniversityDatabase();
return context.Students.Where(x => x.Name.Contains(model.Name)).Select(x => x.GetViewModel).ToList(); return context.Students
.Include(x => x.User)
.Where(x => x.Name
.Contains(model.Name))
.Select(x => x.GetViewModel)
.ToList();
} }
public StudentViewModel? GetElement(StudentSearchModel model) public StudentViewModel? GetElement(StudentSearchModel model)