Exemplo n.º 1
0
        /// <summary> 查找指定井ming的注入模型起始时间 </summary>
        public DATES GetWellInjStartDate(BaseKey key, string wellName)
        {
            List <DATES> ds = key.FindAll <DATES>();

            if (ds != null)
            {
                return(this.GetWellInjStartDate(ds, wellName));
            }

            return(null);
        }
        /// <summary> 关闭所有内存镜像资源流(删除文件) </summary>
        public static void SetAllMmfDispose(this BaseKey key)
        {
            List <TableKey> finds = key.FindAll <TableKey>();

            finds.ForEach(l => l.Close());
        }