protected DataRow GetDataRow(string Where)
        {
            DataRow   Ret = null;
            string    sql = string.Format("SELECT * FROM {0}_{1}_VIW WHERE {2}", Settings.SchemaPrefix, _ObjectName, Where);
            DataTable dt  = DataAccess.ExecuteDataTable(sql);

            if (null != dt && dt.Rows.Count > 0)
            {
                Ret = dt.Rows[0];
            }

            return(Ret);
        }