Find changed properties of a class
Posted
by Rohit
on Stack Overflow
See other posts from Stack Overflow
or by Rohit
Published on 2010-04-14T10:23:42Z
Indexed on
2010/04/14
10:33 UTC
Read the original article
Hit count: 219
c#
I am using asp.net 3.5
I have a license class containing 10 properties and not marked as serializable. I have to log property changes to the database. License is an entity class,and it is not in my scope to modify it. So I cannot mark it as serializabel neither i can use IpropertyChanged Interface.
Now i cannot store it in viewstate as it is not serializable. I wanted to store it so that i can compare it with new values and see which value has changed.
How to proceed with this.
© Stack Overflow or respective owner