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
As requested in issue #621, I've updated the templates for all frameworks to generate async methods. Your proposal in issue 621 kind of works, but generates a return model for all stored procedures.
This PR will generate:
Async methods for all stored procedures which have a single return type,
Add CancellationToken arguments to all generated stored procedures (with default value)
Invoke ExecuteSqlCommandAsync or ExecuteSqlRawAsync (depending on the framework), both have cancellation support
I have tested this with EF6 and EF Core 3 myself, for our own projects.
I've also used the Tester projects to generate the provided contexts again, but I noticed a lot of these projects will not compile after regeneration (unrelated to this PR, this is also the case with the current 3.8.0 and 3.8.1 tagged versions).
As requested in issue #621, I've updated the templates for all frameworks to generate async methods. Your proposal in issue 621 kind of works, but generates a return model for all stored procedures.
This PR will generate:
I have tested this with EF6 and EF Core 3 myself, for our own projects.
I've also used the Tester projects to generate the provided contexts again, but I noticed a lot of these projects will not compile after regeneration (unrelated to this PR, this is also the case with the current 3.8.0 and 3.8.1 tagged versions).