/// <summary>
        /// Run MetaData_SelectBy_ContentInspectionId, and return results as a list of MetaDataRow.
        /// </summary>
        /// <param name="fldContentInspectionId">Value for ContentInspectionId</param>
        /// <returns>A collection of MetaDataRow.</returns>
        public static List <MetaDataContract> SelectBy_ContentInspectionIdNow(int fldContentInspectionId
                                                                              )
        {
            var driver = new MetaDataLogic();

            driver.SelectBy_ContentInspectionId(fldContentInspectionId
                                                );
            return(driver.Results);
        }
        /// <summary>
        /// Run MetaData_SelectBy_ContentInspectionId, and return results as a list of MetaDataRow.
        /// </summary>
        /// <param name="fldContentInspectionId">Value for ContentInspectionId</param>
        /// <param name="connection">The SqlConnection to use</param>
        /// <param name="transaction">The SqlTransaction to use</param>
        /// <returns>A collection of MetaDataRow.</returns>
        public static List <MetaDataContract> SelectBy_ContentInspectionIdNow(int fldContentInspectionId
                                                                              , SqlConnection connection, SqlTransaction transaction)
        {
            var driver = new MetaDataLogic();

            driver.SelectBy_ContentInspectionId(fldContentInspectionId
                                                , connection, transaction);

            return(driver.Results);
        }