Build All DataTables related to a complete Domain Schema. All DataTables related to Entities and Relations stored in the Domain Schema are built.

Namespace: Aspectize.Core
Assembly: AspectizeDAL (in AspectizeDAL.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
void BuildDomainSchema<Domain>()
where Domain : new(), INamespace
Visual Basic
Sub BuildDomainSchema(Of Domain As {New, INamespace})

Type Parameters

Domain
The Domain provider

Examples

CopyC#
dm.BuildDomainSchema<AdventureWorks.Production.DomainProvider>();
CopyVB.NET
dm.BuildDomainSchema(Of AdventureWorks.Production.DomainProvider)()

See Also