Returns true if the type is the generated implementation type for an entity interface
Namespace: BrightstarDB.EntityFrameworkAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# |
|---|
public static bool IsMappedImplementation(
Type t
) |
| Visual Basic |
|---|
Public Shared Function IsMappedImplementation (
t As Type
) As Boolean |
| Visual C++ |
|---|
public:
static bool IsMappedImplementation(
Type^ t
) |
| F# |
|---|
static member IsMappedImplementation :
t : Type -> bool
|
Parameters
- t
- Type: System..::..Type
The type to be tested
Return Value
Type:
BooleanTrue if the type is an entity implementation type, false otherwise
See Also