Beispiel #1
0
        public string[] GetLocalDbData(string where = null)
        {
            if (where == null)
            {
                where = _filtered && _activeFilter.Any() ?
                        "paper_no in ({0})".Put(string.Join(",", _activeFilter)) : string.Empty;
            }

            var res = _ad.GetLocalDBData(Name, _strFields, where);

            Log("GetLocalDbData {0}: {1}", where, res);
            // сразу после старта терминала АД может вернуть null (баг в терминале)
            return(res.ToRows());
        }