tags:

views:

23

answers:

1

Why I can't use EAGER fetching for the same purpose

+1  A: 

You can use EAGER fetching to obtain the same result, at the end. But this means things will be always eagerly loaded (vs when you just need to). Is this what you want?

References

Pascal Thivent
Does EAGER fetch get the data immediately vs when accessed?
@user319694 Yes, that's the principle of EAGER (vs LAZY).
Pascal Thivent