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