This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static Boolean IsDirtyEntity(this ISession session, Object entity) | |
{ | |
return (DirtyPropertiesOf(session, entity).Any()); | |
} | |
public static IEnumerable<string> DirtyPropertiesOf(this ISession session, Object entity) | |
{ | |
String className = NHibernateProxyHelper.GuessClass(entity).FullName; | |
ISessionImplementor sessionImpl = session.GetSessionImplementation(); |