Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yinchang0626 authored Mar 20, 2024
1 parent ab0bf13 commit a41c0e9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,17 @@ An abp module that provides standard tree structure entity implement.
options.TreeEntity<Resource>(x => x.CodeLength = 10);//set CodeLength for each Entity(Default:5)
});
```
## CheckPoints

1.Check the module `DependsOn(typeof(AbpTreesXxxModule))` dependencies are config

`XxxEntityFrameworkCoreModule`, `XxxDomainSharedModule`, `XxxDomainModule`

2.Check `IYourRepository : ITreeRepository<YourEntity>`

3.Be sure `YourEntity:XxxEntity<Guid>,ITree<YourEntity>`

4.Be sure `XxxEntityFrameworkCoreModule` has config `options.AddDefaultTreeRepositories();`

## Sample

Expand Down

0 comments on commit a41c0e9

Please sign in to comment.