Adds a mapping between an entity definition interface and its implementation class

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

Syntax

C#
public void SetImplMapping<I, T>()
where I : class
where T : I
Visual Basic
Public Sub SetImplMapping(Of I As Class, T As I)
Visual C++
public:
generic<typename I, typename T>
where I : ref class
where T : I
void SetImplMapping()
F#
member SetImplMapping : unit -> unit  when 'I : not struct when 'T : 'I

Type Parameters

I
The entity definition interface type
T
The entity implementation class type

See Also