Beispiel #1
0
        protected override void DeleteItem(T entity)
        {
            if (!GetPrimaryKey(entity, out TKey id))
            {
                return;
            }

            Client.DeleteDocument(id.ToString());
        }
Beispiel #2
0
        protected override void DeleteItem(T entity)
        {
            string id;

            if (!GetPrimaryKey(entity, out id))
            {
                return;
            }

            Client.DeleteDocument(id);
        }