I have some entity types that I would like to lazy load. However, they have some internal (assembly) fields they expose, but are not used outside that class. These fields are co
You can use the
[XmlIgnore]
attribute to decorate the fields :)