stored procedures in Entity Framework Core v5 not supported?

Posts   
 
    
Ray S
User
Posts: 1
Joined: 12-Mar-2021
# Posted on: 12-Mar-2021 18:48:59   

LLBLGen Pro v5.8.0 / MSSQL Server When I start a completely new project and try to "create call definitions to stored procedure..." from an existing database (database first), I always get the error that the target framework does not support stored procedure calls. Will this be implemented in the next version or what else do I have to do to have the SP call in my LLBLGen project?

thanks

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39613
Joined: 17-Aug-2003
# Posted on: 12-Mar-2021 20:48:39   

At the moment we don't support stored procedures on Entity Framework Core, as they have to be executed as 'exec <proc>' through the plain sql api of entity framework core 5 and not through a native api. We'll add support for that in the future.

If you need stored procedure support, you could opt for our own ORM framework instead, which does support stored procedure calls.

Frans Bouma | Lead developer LLBLGen Pro