예제 #1
0
 private bool IsModified(REGION record)
 {
     //Type-specific routine that takes into account relationships that should also be considered
     //when deciding if there are unsaved changes.  The entity properties also return true if the
     //record is new or deleted.
     if (record == null)
     {
         return(false);
     }
     return(record.IsModified(_context) ||
            record.SupplierRegion.IsModified(_context));
 }