G
Guest
Just a question to verify - I am a beginner in .Net
Our business needs require that we have to modify db tables on regular basis
(add column, remove column, add/drop table etc). Therefore it is a pain to
modify business logic layer+business data layer after you for example added a
column to a database. Additionally you have to recompile after every change
and bring a server down. Therefore is there a way to bypass re-compilation
process?
I am looking for possibility of making DYNAMIC (or Flexible) classes that
will grab information on tables structure, extract all column names, types,
column sizes and create objects with properties and CRUD methods to interfere
with database. Such flexible SQL will be generated on the fly by using those
classes/componets which will get input data and place it into paramertized
query. Additionally it should be cached on the client and/or on the server.
Our business needs require that we have to modify db tables on regular basis
(add column, remove column, add/drop table etc). Therefore it is a pain to
modify business logic layer+business data layer after you for example added a
column to a database. Additionally you have to recompile after every change
and bring a server down. Therefore is there a way to bypass re-compilation
process?
I am looking for possibility of making DYNAMIC (or Flexible) classes that
will grab information on tables structure, extract all column names, types,
column sizes and create objects with properties and CRUD methods to interfere
with database. Such flexible SQL will be generated on the fly by using those
classes/componets which will get input data and place it into paramertized
query. Additionally it should be cached on the client and/or on the server.