Select from following answers:- Create the object by calling the CreateInstance method of the Activator class.
- Create the object by calling the CreateObject method of the ObjectContext object.
- Create the object using the new operator.
- All Above
If you want the proxy type to be created along with your object, use the CreateObject method on the ObjectContext when creating a new object, instead of the new operator.
Using the new operator (the constructor) will simply create the object with no proxy.
Show Correct Answer
Source: MeasureUp.com | |
Alert Moderator