CRUD add a option to skip entity configuration
holyrong opened this issue · 3 comments
holyrong commented
Why not add a checkbox to skip entity configuration items?
I don't need the following code snippet when generate crud code:
builder.Entity<Member>(b => { b.ToTable(MembersConsts.DbTablePrefix + "Member", MembersConsts.DbSchema); b.ConfigureByConvention(); });
wakuflair commented
I think these code are necessary for almost all other users.
You can delete them manually after generation.
holyrong commented