EasyAbp / AbpHelper.CLI

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

Missing "using System.Collections.Generic;" For List #126

Closed mrs01dev closed 3 years ago

mrs01dev commented 3 years ago

For class members that has a List as: public List Tages { get; set; } the generated CreateUpdate Dto is missing
[using System.Collections.Generic;]

Please add using System.Collections.Generic; when a class have List<> Thanks

mrs01dev commented 3 years ago

Please not , entity framework does not support 'List'. https://stackoverflow.com/questions/20711986/entity-framework-code-first-cant-store-liststring/20712012. So you can skip/ignore this issue