Evolve db with code
(Created page with "Using the MDriven Framework you can do the evolve-database operation from within VisualStudio: none|thumb|623x623px You can also do these ope...") |
No edit summary |
||
Line 21: | Line 21: | ||
PersistenceMapperAdo2 pmapp | PersistenceMapperAdo2 pmapp | ||
pmapp.CreateDatabaseSchema(YourEcoSpace.GetTypeSystemService(), new DefaultCleanPsConfig(true)); | pmapp.CreateDatabaseSchema(YourEcoSpace.GetTypeSystemService(), new DefaultCleanPsConfig(true)); | ||
[[Category:MDriven Framework]] | |||
[[Category:Database]] |
Revision as of 08:51, 2 December 2022
This page was created by Hans.karlsen on 2019-10-06. Last edited by Edgar on 2025-01-20.
Using the MDriven Framework you can do the evolve-database operation from within VisualStudio:
You can also do these operations in runtime:
PersistenceMapperAdo2 pmapp var systemservice = YourEcoSpace.GetTypeSystemService(); string[] ExecutedStatements; string result; IDBEvolutor evolutor = pmapp.GetEvolutor(systemservice); evolutor.CalculateScript(); evolutor.GenerateDbScript(); evolutor.GenerateMappingScript(); evolutor.GenerateWarnings(); evolutor.GenerateErrors(); evolutor.ExecuteScript(); result = "Evolve success\r\n"; ExecutedStatements = evolutor.GenerateExecutedStatements(); foreach (string s in ExecutedStatements) result += s + "\r\n";
To fill a database with schema information the first time:
PersistenceMapperAdo2 pmapp pmapp.CreateDatabaseSchema(YourEcoSpace.GetTypeSystemService(), new DefaultCleanPsConfig(true));