sjh37 / EntityFramework-Reverse-POCO-Code-First-Generator

EntityFramework Reverse POCO Code First Generator - Beautifully generated code that is fully customisable. This generator creates code as if you reverse engineered a database and lovingly created the code by hand. It is free to academics (you need a .edu or a .ac email address), not free for commercial use. Obtain your licence from
https://www.reversepoco.co.uk/
Other
700 stars 230 forks source link

Error in generated file : ; expected #814

Closed fguemara closed 8 months ago

fguemara commented 8 months ago

Hi, Inside the POCO Configuration, the Configure method does not generate a correct key method. Instaed of builder.HasKey(x => x.AchatUid);

It does generate x => x.AchatUid

So the compiler complains.

How to fix this ?

fguemara commented 8 months ago

Never mind, I used GeneratorType.Ef6 instead of GeneratorType.EfCore But to know