I have a dynamic proxy obtained via
var boo = context.Set<Boo>().Find(1)
how can I know the fact that boo is actually a proxy of Boo?
from debug console, I found out that the proxy kept this info in its local variable boo._entityWraper.IdentityType
but i don't know how to access it.
Any help will be highly appreciated~