Is there an EF equivalent to LINQ to SQL's OnCreated partial?
Several of my objects have XML fields that I would like to parse whenever the object is loaded from the db - I'd like to put the XML data into more friendly strongly-typed collections. I've already marked the XML field as private and hooked the SavingChanges event to re-build the XML before the item is committed back to the db, but I can't figure out how to populate the collections whenever the object is loaded.
I've thought of using the OnFieldChanged partial for my XML field, but that would run again whenever the XML field is re-built during SavingChanges, so it seems like there should be a better way.