I've created a DLL
assembly which contains the edmx
for northwind
database.
I created a reference to that dll through linqpad and I do see the db and able to run queries.
But - I want to test the behavior of DeferredLoadingEnabled
property and I need to set it via the context variable.
eg
ctx.DeferredLoadingEnabled = false;
But how can I access ctx
?
linqpad generates it for me , and I need to access it.