Checks conformity between the logical schema of in memory data specified by domain Name and it's physical counterpart in the Database. If there are errors, an exception is thrown with the error message returned from the Database.

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

Syntax

C#
void CheckPhysicalSchema(
	string domain
)
Visual Basic (Declaration)
Sub CheckPhysicalSchema ( _
	domain As String _
)

Parameters

domain
Type: System..::.String
The Domain Name

Examples

CopyC#
dm.CheckPhysicalSchema("AdventureWorks.Production");
CopyVB.NET
dm.CheckPhysicalSchema("AdventureWorks.Production")

See Also