Base:
property
ClrType
System.Data.Metadata.Edm.EdmType.ClrType
10 references to ClrType
System.Data.Entity (10)
System\Data\Common\Internal\Materialization\Translator.cs (1)
1221
Type clrType = oSpaceType.
ClrType
;
System\Data\Metadata\Edm\EntityType.cs (2)
327
Debug.Assert(
ClrType
!= null, "Expecting non-null CLRType of o-space EntityType.");
328
builder.Append("CLR:").Append(
ClrType
.FullName);
System\Data\Metadata\Edm\LightweightCodeGenerator.cs (1)
37
return (clrType.Constructor ?? (clrType.Constructor = CreateConstructor(clrType.
ClrType
)));
System\Data\Objects\Internal\EntityProxyFactory.cs (3)
160
if (TryGetProxyType(ospaceEntityType.
ClrType
, ospaceEntityType.CSpaceTypeName, out proxyTypeInfo))
240
Tuple<Type, string> proxyIdentiy = new Tuple<Type, string>(clrEntityType.
ClrType
, clrEntityType.HashedDescription);
633
get { return _ospaceEntityType.
ClrType
; }
System\Data\Objects\Internal\EntityProxyTypeInfo.cs (3)
180
Debug.Assert(ospaceEntityType.
ClrType
== _entityType.
ClrType
);
181
throw EntityUtil.DuplicateTypeForProxyType(ospaceEntityType.
ClrType
);