Add a column to the database, then update dbml

I have an application with a dynamic table in a database. The problem is that, say, there is a change in the structure of the table, for example, adding a column, is it possible to dynamically update the dbml file? so I don’t need to fix the application every time a column has been added

+5
source share
1 answer

Using the DBML approach and code generation, there is no way to let your application automatically take advantage of the changes. DBML leads to the creation of new generated code that needs to be compiled, which requires the DSL, Visual Studio, and .NET SDK toolset.

+2
source

All Articles