Interface IEntityTypeResolver
Service allowing the resolution engine to retrieve the C# Type from the entity name stored in the database (e.g., "Product" -> typeof(Morpheo.App.Product)).
Namespace: Morpheo.Sdk
Assembly: Morpheo.Sdk.dll
Syntax
public interface IEntityTypeResolver
Methods
| Edit this page View SourceResolveType(string)
Resolves the C# Type from the entity name.
Declaration
Type? ResolveType(string entityName)
Parameters
| Type | Name | Description |
|---|---|---|
| string | entityName | The name of the entity. |
Returns
| Type | Description |
|---|---|
| Type | The resolved Type, or null if not found. |