Dynamic Proxy (POCO Proxy)

context.Configuration.ProxyCreationEnabled = false;

Explicitly Creating an Instance of a Proxy

using (var context = new BloggingContext())
{
    var blog = context.Blogs.Create();
		// The generic version of Create can be used if you want to create an instance of a derived entity type.
		var admin = context.Users.Create<Administrator>();
}

Getting the Actual Entity Type From a Proxy Type