14 references to ClrType
System.Data.Entity (14)
System\Data\Common\Internal\Materialization\Translator.cs (3)
351
result = LookupObjectMapping(edmType).
ClrType
.ClrType;
379
result = LookupObjectMapping(edmType).
ClrType
.ClrType;
1220
ClrEntityType oSpaceType = (ClrEntityType)LookupObjectMapping(cSpaceType).
ClrType
;
System\Data\Mapping\DefaultObjectMappingItemCollection.cs (5)
323
clrType = ((ObjectTypeMapping)GetMap(cdmType)).
ClrType
;
383
string clrName = objectMap.
ClrType
.Identity;
392
if (BuiltInTypeKind.PrimitiveType != objectMap.
ClrType
.BuiltInTypeKind &&
393
BuiltInTypeKind.RowType != objectMap.
ClrType
.BuiltInTypeKind &&
394
BuiltInTypeKind.CollectionType != objectMap.
ClrType
.BuiltInTypeKind)
System\Data\Metadata\MetadataWorkspace.cs (2)
1046
objectSpaceType = (T)ocMap.
ClrType
;
1276
clrType = ((ObjectTypeMapping)map).
ClrType
;
System\Data\Objects\Internal\ComplexTypeMaterializer.cs (2)
144
Debug.Assert(!Helper.IsEntityType(mapping.
ClrType
), "Expecting complex type");
145
ClrType = LightweightCodeGenerator.GetConstructorDelegateForType((ClrComplexType)mapping.
ClrType
);
System\Data\Objects\Internal\PocoPropertyAccessorStrategy.cs (1)
107
return mapping.
ClrType
.ClrType;
System\Data\Objects\ObjectStateManager.cs (1)
3031
EntitySetQualifiedType entitySetQualifiedType = new EntitySetQualifiedType(mapping.
ClrType
.ClrType, entitySet);