Creates a domain object bound to a specific type

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public BrightstarEntityObject(
	BrightstarEntityContext context,
	Type entityType
)
Visual Basic
Public Sub New ( 
	context As BrightstarEntityContext,
	entityType As Type
)
Visual C++
public:
BrightstarEntityObject(
	BrightstarEntityContext^ context, 
	Type^ entityType
)
F#
new : 
        context : BrightstarEntityContext * 
        entityType : Type -> BrightstarEntityObject

Parameters

context
Type: BrightstarDB.EntityFramework..::..BrightstarEntityContext
The context that the new domain object will be attached to
entityType
Type: System..::..Type
The implementation class for the domain object

See Also