Skip to content

Commit e17cad2

Browse files
committed
docs(readme): stub out documentation updates
1 parent 6d6c3e4 commit e17cad2

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,23 @@ services.AddJsonApi<AppDbContext>(
228228

229229
### Defining Custom Data Access Methods
230230

231+
By default, data retrieval is distributed across 3 layers:
232+
1. `JsonApiController`
233+
2. `EntityResourceService`
234+
3. `DefaultEntityRepository`
235+
236+
Customization can be done at any of these layers.
237+
238+
#### Custom Controller Methods
239+
240+
TODO
241+
242+
#### Custom Resource Service Implementation
243+
244+
TODO
245+
246+
#### Custom Entity Repository Implementation
247+
231248
You can implement custom methods for accessing the data by creating an implementation of
232249
`IEntityRepository<TEntity, TId>`. If you only need minor changes you can override the
233250
methods defined in `DefaultEntityRepository<TEntity, TId>`. The repository should then be

0 commit comments

Comments
 (0)