Fixing an issue where DeleteAsync calls expect PK.

This commit is contained in:
Burak Kaan Köse
2025-12-25 17:21:23 +01:00
parent 8a68fafedf
commit f6e94e89c9
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ public class ContactService : BaseDatabaseService, IContactService
if (contact != null && !contact.IsRootContact)
{
await Connection.DeleteAsync<AccountContact>(contact).ConfigureAwait(false);
await Connection.DeleteAsync<AccountContact>(contact.Address).ConfigureAwait(false);
}
}