private Exception LogException(string methodName, Type entityType, Exception ex)
        {
            var dataException = exceptionManager.CreateDataException(ex);

            logger.Error("Exception in TD.CTS.MsSqlData.DataProvider." + methodName + "<" + entityType.Name + ">" + "()", dataException);

            return(dataException);
        }