Does the entity framework 4.0 track changes on Plain old C# object?
If so, should my class do something special (implement an interface/raise events when changing the value of a property?)
Also, how can I get the state(modified/unchanged, etc) of a POCO? Is there a way to know the “old” values of properties?
I found POCO in the Entity Framework: Part 1 – The Experience by quick googling. See Part 3 – Change Tracking with POCO.