Skip to content

Commit cd154dc

Browse files
authored
Update 15/umbraco-commerce/key-concepts/readonly-and-writable-entities.md
1 parent ca75190 commit cd154dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

15/umbraco-commerce/key-concepts/readonly-and-writable-entities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The reason why we have split entities in this way for a number of reasons, howev
1717

1818
## Converting a ReadOnly entity into a Writable entity
1919

20-
To convert a ReadOnly entity into its Writable form, we achieve this by calling the entities `AsWritableAsync(uow)` method, passing in a valid Unit of Work instance to perform the write operations on. Once we have a Writable entity, we can then perform the write operations we desire and persist those changes back to the database.
20+
To convert a ReadOnly entity to its Writable form, call the entity's `AsWritableAsync(uow)` method. Pass in a valid Unit of Work instance associated with this operation. Once a Writable entity is available, perform the desired write operations and persist the changes back to the database.
2121

2222
```csharp
2323
await _uowProvider.ExecuteAsync(async (uow) =>

0 commit comments

Comments
 (0)