see the code
class Student {
public virtual int ID { get; set; }
public virtual string LastName { get; set; }
public virtual string FirstMidName { get; set; }
} i know virtual fields can be override in child class in terms of OOPS
tell me what is the objective of declaring fields as virtual in entity class ?
if we do not create virtual fields then what worse will happen?
make me understand a nice example.