public bool UpdateWhereExtendido(string WhereEx, aspnet_ExtendedPropertiesEntityUpdate EntityUpdate)
 {
     try
     {
         return(this.CreateDataAccess().UpdateWhereExtendido(WhereEx, EntityUpdate));
     }
     catch (Exception ex)
     {
         Helpers.Logger.Logger.LogExceptionStatic(ex);
         throw ex;
     }
 }
 public bool UpdateFromInfo(aspnet_ExtendedPropertiesEntityKey EntityKey, aspnet_ExtendedPropertiesEntityInfo EntityInfo)
 {
     try
     {
         aspnet_ExtendedPropertiesEntityUpdate EntityUpdate = new aspnet_ExtendedPropertiesEntityUpdate();
         EntityUpdate.LoadFromInfo(EntityInfo);
         return(this.Update(EntityKey, EntityUpdate));
     }
     catch (Exception ex)
     {
         Helpers.Logger.Logger.LogExceptionStatic(ex);
         throw ex;
     }
 }
 public bool Update(aspnet_ExtendedPropertiesEntityKey EntityKey, aspnet_ExtendedPropertiesEntityUpdate EntityUpdate)
 {
     try
     {
         if (!EntityKey.Validate())
         {
             return(false);
         }
         return(this.CreateDataAccess().Update(EntityKey, EntityUpdate));
     }
     catch (Exception ex)
     {
         Helpers.Logger.Logger.LogExceptionStatic(ex);
         throw ex;
     }
 }