Updated: November 2007
Represents a domain class.
'Usage Dim instance As DomainClassInfo 'Declaration Public Class DomainClassInfo _ Inherits DomainObjectInfo
There is a DomainClassInfo object for each domain class in a domain model.
For example, if the definition of a domain model has a class A that derives from domain class B and has a relationship to domain class C, then there will be three DomainClassInfo objects, one DomainClassInfo object for each domain class.
You access DomainClassInfo objects using the DomainDataDirectory of a store.
Store mystore = new Store(somefile); ICollection<DomainClassInfo> dclasses = Mystore.DomainDataDirectory.DomainClasses.get_DomainClasses(); // foreach …