Exemplo n.º 1
0
 public static void DeleteEq(this IEsentCursor cursor, ITableKey key)
 {
     foreach (var i in cursor.EnumerateEq(key))
     {
         Api.JetDelete(cursor.JetSesid, cursor.JetTableid);
     }
 }
Exemplo n.º 2
0
 public static string GetKey(this ITableKey x)
 {
     return($"{ x.TableName }");
 }