RuntimeEngineInitialize Method |
Initializes the application. Creates the database tables when the application is started first time.
Namespace:
Unvired.Kernel.UWP.Core
Assembly:
Unvired.Kernel.UWP (in Unvired.Kernel.UWP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic void Initialize(
string appName,
XDocument metaDataXml,
string assemblyName,
string entityNamespace
)
Public Sub Initialize (
appName As String,
metaDataXml As XDocument,
assemblyName As String,
entityNamespace As String
)
public:
void Initialize(
String^ appName,
XDocument^ metaDataXml,
String^ assemblyName,
String^ entityNamespace
)
member Initialize :
appName : string *
metaDataXml : XDocument *
assemblyName : string *
entityNamespace : string -> unit
Parameters
- appName
- Type: SystemString
Application Name - metaDataXml
- Type: System.Xml.LinqXDocument
Metadata xml XDocument - assemblyName
- Type: SystemString
Application assembly name - string asm = GetType().GetTypeInfo().Assembly.FullName;
- entityNamespace
- Type: SystemString
Namespace of generated BusinessEntity
See Also