/// <summary>
        /// Check table contains this record or not
        /// </summary>
        /// <param name="tableName"></param>
        /// <param name="record"></param>
        /// <returns></returns>
        public bool Contains(string tableName, object record)
        {
            //
            // Initialize result
            bool result = false;


            //
            // First, try to extract main information of record
            RecordSnapshot recordSnapshot = this.GetRecordSnapshot(tableName, record);
            TableSnapshot  tableSnapshot  = this._listTableSnapshot.FirstOrDefault(x => x.TableName.Equals(tableName));

            if (tableSnapshot != null)
            {
                result = tableSnapshot.Contains(recordSnapshot);
                if (result == false)
                {
                    result = tableSnapshot.IsDuplicatedUniqueColumn(recordSnapshot);
                }
            }


            //
            // Return result
            return(result);
        }