Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
602 views
in Technique[技术] by (71.8m points)

entity framework - DBContext Added/Attached Event?

EF 4.1 RC. I want to run some code after an entity has been added/attached to the DBContext. Is there an event for this (I can't find one). Basically I want to check if the added/attached entity is of a certain interface and if it is, do some stuff with it. Thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

To track changes to the Context you can use the ObjectStateManagerChanged event of the ObjectStateManager. To access the ObjectStateManager, you have to use the IObjectContextAdapter for casting the DbContext like

var contextAdapter = ((IObjectContextAdapter)dbcontext);            
contextAdapter.ObjectContext
              .ObjectStateManager
              .ObjectStateManagerChanged += ObjectStateManagerChanged;

Once you got the event, it fires every time the collection gets changed by adding or removing entities to the ObjectStateManager. To track the state of the entity, use GetObjectStateEntry() of the ObjectStateManager and use the Element of the CollectionChangeEventArgs param.

Combining both states of CollectionChangeEventArgs and ObjectStateEntry you can track, what is going on....


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...