Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 461 Bytes

File metadata and controls

32 lines (18 loc) · 461 Bytes

Updating Data

.....

UnitOfWork Pattern

using (var uow = db.BeginWork())
{
    abc

    //...

    uow.Commit();
}

Partial Entities

abc

Bulk Update

abc

JSON Deserialization for CRUD Operations

Rapidex JSON deserialization infrastructure supports new, update, delete and add/remove relations operations on entities.

See: Serialization and Deserialization of Entities