I'd like to see if there's a way to hook into the Entity Framework context so I know as soon as it has finished creating a POCO object.
Are there any attributes I can use, such as with [OnDeserializing]? The purpose is to set a few values on the object as soon as the context is done creating it from a database fetch.
Thanks very much.