Beispiel #1
0
        // reference to child table?


        public void Delete(Delete value)
        {
            WithConnection(
                c =>
                {
                    value.ExecuteNonQuery(c);
                }
            );
        }
 public void Delete(Delete AppSnapshotKey)
 {
     Console.WriteLine("Delete");
     WithConnection(
         c =>
         {
             AppSnapshotKey.ExecuteNonQuery(c);
         }
     );
 }