Ejemplo n.º 1
0
        public bool TryGetCode(string s, out int code)
        {
            if (dyna_index.TryGetValue(s, out code))
            {
                return(true);
            }
            code = -1;
            var q = index_str.GetAllBySample(new object[] { -1, s }).FirstOrDefault(ob => (string)((object[])ob)[1] == s);

            if (q == null)
            {
                return(false);
            }
            code = (int)((object[])q)[0];
            return(true);
        }
Ejemplo n.º 2
0
 public IEnumerable <object> GetBySubj(int subj)
 {
     return(s_index.GetAllBySample(new object[] { subj, -1, null }));
 }