EF Core advanced

EF Core advanced

1st - 5th Grade

21 Qs

quiz-placeholder

Similar activities

JavaScript Output

JavaScript Output

1st Grade

25 Qs

computer

computer

5th - 8th Grade

20 Qs

Tech Final

Tech Final

4th Grade

25 Qs

PlatT3

PlatT3

1st Grade

25 Qs

Computer safety and ICT tool

Computer safety and ICT tool

1st Grade

20 Qs

Acceso a bases de datos en .net

Acceso a bases de datos en .net

2nd Grade

25 Qs

G5 | Week 2 | Format and Text style

G5 | Week 2 | Format and Text style

2nd - 5th Grade

19 Qs

Level 3 Quiz

Level 3 Quiz

5th Grade

18 Qs

EF Core advanced

EF Core advanced

Assessment

Quiz

Computers

1st - 5th Grade

Medium

Created by

Nataly Revutska

Used 2+ times

FREE Resource

21 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

.Where(Func<int, int> predicate) is a signature of

IEnumerable

IQueryable

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

To provide lazy loading we need to mark navigation property as _____ and the entity should not be _____

(write two words separated by space)

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

TPH розшифровується як ________________

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

What can IEnumerable do?

LINQ-to-SQL

LINQ-to-Object

Can pass a compiled function to LINQ extensions

Can pass an expression tree to LINQ extensions

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How Include() solves N+1 problem?

By running queries asynchronously

Using JOIN

By grouping big number of queries

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What will be returned if LazyLoading is turned On and Off respectively ?

var countries = db.Countries.Take(3);


var capitals = new List<Capital>();


foreach(var country in countries)

{

capitals.Add(country.Capital.Name);

}


return capitals;

On (null reference exception) | Off (null reference exception)

On (null reference exception) | Off (returns list of Capital names)

On (returns list of Capital names) | Off (null reference exception)

On (returns list of Capital names) | Off (returns list of Capital names)

7.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which additional method(s) we can use in the explicit loading?

Collection()

LoadAll()

Reference()

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?