Returns true if o is an instance of one of the entity implementation types known to this context
Namespace: BrightstarDB.EntityFrameworkAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# |
|---|
public bool IsOfMappedType(
Object o
) |
| Visual Basic |
|---|
Public Function IsOfMappedType (
o As Object
) As Boolean |
| Visual C++ |
|---|
public:
bool IsOfMappedType(
Object^ o
) |
| F# |
|---|
member IsOfMappedType :
o : Object -> bool
|
Parameters
- o
- Type: System..::..Object
The object to be checked
Return Value
Type:
BooleanTrue if the object is an instance of a known entity implementation type, false otherwise
See Also