Select from following answers:- Mark the Course entity as abstract.
- Remove the Course entity from the model.
- Add code to a partial class file. Add a Course constructor to the file and throw an exception in the constructor.
- All Above
An EntityType can be either abstract or concrete, where the former cannot have instances. If you mark Course as abstract, no instance of this type can be created directly. Only instances of derived, nonabstract classes can be created.
Show Correct Answer
Source: MeasureUp.com | |
Alert Moderator