File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff 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+
231248You 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
233250methods defined in ` DefaultEntityRepository<TEntity, TId> ` . The repository should then be
You can’t perform that action at this time.
0 commit comments