Reconfigure for GIT

This commit is contained in:
2017-03-26 20:00:03 +02:00
commit 00637826ab
8056 changed files with 535977 additions and 0 deletions
@@ -0,0 +1,20 @@
Folder Description
The "DatabaseUpdate" project folder is intended for storing code that supplies
initial data (default User objects, embedded Reports, etc) and handles a database
update when the application version changes.
Relevant Documentation
Supply Initial Data
http://help.devexpress.com/#Xaf/CustomDocument2788
Distribute the Created Reports with the Application
http://help.devexpress.com/#Xaf/CustomDocument2786
How to: Update the Database Structure after the Persistent Class or Property Was Renamed or Removed
http://help.devexpress.com/#Xaf/CustomDocument3254
ModuleUpdater Class
http://help.devexpress.com/#Xaf/clsDevExpressExpressAppUpdatingModuleUpdatertopic
@@ -0,0 +1,22 @@
Imports System
Imports System.Security.Principal
Imports DevExpress.Persistent.BaseImpl
Imports DevExpress.ExpressApp
Imports DevExpress.ExpressApp.Objects
Imports DevExpress.ExpressApp.Updating
Imports DevExpress.Data.Filtering
Imports DevExpress.Xpo
Public Class Updater
Inherits ModuleUpdater
Public Sub New(ByVal objectSpace As IObjectSpace, ByVal currentDBVersion As Version)
MyBase.New(objectSpace, currentDBVersion)
End Sub
Public Overrides Sub UpdateDatabaseAfterUpdateSchema()
MyBase.UpdateDatabaseAfterUpdateSchema()
End Sub
End Class