Gets the entity type for the specified type name.

Namespace:  Mindscape.LightSpeed.DataServices
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
protected virtual Type ResolveTypeName(
	string fullTypeName
)
Visual Basic (Declaration)
Protected Overridable Function ResolveTypeName ( _
	fullTypeName As String _
) As Type

Parameters

fullTypeName
Type: System..::.String
The full type name.

Return Value

A Type representing the type with this name.

Remarks

By default, LightSpeed looks for type definitions only in the assembly containing the strong-typed DataServiceUnitOfWork. This will suffice if you are using a graphical model and the generated LINQ unit of work. If you are writing classes by hand and/or defining the LINQ unit of work in a separate assembly, override this method to resolve type names according to your entity type locations.

See Also