Class EntityCompare
Compares two entities and determines if they are the same, different, or if one is missing. Left represents the source and Right represents the target.
PresentInRightOnly - The entity is in the Right but not in the Left. PresentInLeftOnly - The entity is in the Left but not in the Right. Changed - The entity is in both the Left and Right but the properties are different. None - The entity is in both the Left and Right and the properties are the same.
public class EntityCompare
- Inheritance
-
EntityCompare
- Inherited Members
Methods
- Compare<T>(T?, T?)
Compares two entities and returns the comparison result.
- Compare<T, K>(T?, T?)
Compares two collections of entities and returns the comparison results.
- Compare<T, K>(T?, T?, Func<K, string>)
Compares two collections of entities and returns the comparison results.