Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

exclude redults after theninclude

var test = await context.Tests
    .Where(t => t.SchoolyearId == schoolyearId)
    .IncludeMany(t => t.TestType,
       x => x.Subject,
       x => x.Schoolclass
    )
    .AsNoTracking()
    .ToListAsync();
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #exclude #redults #theninclude
ADD COMMENT
Topic
Name
5+9 =