Skip to content

1.1.4 ‐ Simple CRUD Request Wrapper (SCRW)

Guilherme Branco Stracini edited this page Oct 8, 2023 · 2 revisions

This request wrapper implements the following operations:

  • TryFind - Try to find an entity. Only one result is allowed. If no results are found, null is returned.
  • Find - Find an entity. Only one result is allowed. If no results are found, throws an exception.
  • Update - Create or update an entity. All required keys must be informed. For update operations, only keys and changed fields should be supplied.
  • Remove - Removes an entity. All required keys must be informed.