The virtual keyword has an effect when used on properties in EF Code First. Can someone describe all its ramifications in different situations?
For instance, I know it can control lazy loading -- if you use the virtual keyword on an ICollection/one-to-many relationship property, it will be lazy-loaded by default, whereas if you leave the virtual keyword out, it will be eager-loaded.
What other effects can virtual have in EF with POCO entities? Should I default to using virtual on all my properties, or default to NOT using it?