EasyAbp / AbpHelper.CLI

Providing code generation and more features to help you develop applications and modules with the ABP framework.
MIT License
284 stars 94 forks source link

Options to generate CRD-only, RD-only, R-only application service #79

Closed gdlcf88 closed 4 years ago

gdlcf88 commented 4 years ago

There could be 4 options: Create(C), Read(R), Update(U), Delete(D).

C+R+U+D = CrudAppService<,,,,,> C+R+D = CrudAppService<,,,,> R+D = CrudAppService<,,,> R = ReadOnlyAppService<,,,>

See https://github.com/abpframework/abp/pull/4346

gdlcf88 commented 4 years ago

I misunderstood it.