Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 52 down vote accepted

So far, I know of these effects.

  • Lazy Loading: Any virtual ICollections will be lazy-loaded unless you specifically mark them otherwise.
  • More efficient change tracking. If you meet all the following requirements then your change tracking can use a more efficient method by hooking your virtual properties. From the link:

    To get change tracking proxies, the basic rule is that your class must be public, non-abstract or non-sealed. Your class must also implement public virtual getters/setters for all properties that are persisted. Finally, you must declare collection based relationship navigation properties as ICollection<T> only. They cannot be a concrete implementation or another interface that derives from ICollection<T> (a difference from the Deferred Loading proxy)

Another useful link describing this is MSDN's Requirements for Creating POCO Proxies.

share|improve this answer
19  
There is no other reason to make properties virtual. Navigation properties are marked as virtual for lazy loading and scalar properties are marked as virtual for change tracking. – Ladislav Mrnka Apr 8 '11 at 18:31
what are navigation properties and what are scalar properties? – Abid Ali Jul 10 '12 at 10:30
2  
@AbidAli: I believe a navigation property is a foreign key (an entity class type) or a one to many relationship (of type ICollection<>). A scalar property is a base type (int, string, ..) or a ComplexType (which is just a struct of base types). – Scott Stafford Jul 18 '12 at 14:30

http://msdn.microsoft.com/en-us/library/dd468057 this link is helpfull. must read

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.