I am using EF Core 3.0 with a database-first approach to Scaffold-DbContext
from a SQL Server database:
dotnet ef dbcontext
scaffold "Server=***;Database=***;User Id=***;Password=****;" Microsoft.EntityFrameworkCore.SqlServer
-o Models -c "MyContext" --project=Data
When the models are generated, it uses a specified naming for the variable for example:
if the column in the database called for example
ISBuy
becomesIsbuy
CategoryID
=>CategoryId
and this really misses up my system ...
Is there is a way to prevent that converting and generate variable name with the same as database or is there is a super magical way to prevent just these and use camel case as EF Core does?
And I am not talking about the object that returned from the API because I found a lot of solutions for that case but never this one.
Thanks