Пример #1
0
 public bool CheckExists(long id)
 {
     using (var tran = _engine.GetSafeTransaction())
     {
         var item = tran.Select <byte[], byte[]>(_tableName, 1.ToIndex(id));//.ObjectGet<T>().Entity;
         return(item.Exists);
     }
 }