3 references to NullableForType
System.Data.Entity.Design (3)
System\Data\EntityModel\Emitters\ClientApiGenerator.cs (1)
458return type.ClrType.IsValueType ? TypeReference.NullableForType(type.ClrType) : TypeReference.ForType(type.ClrType);
System\Data\EntityModel\Emitters\EntityContainerEmitter.cs (1)
635CodeTypeReference argumentType = clrType.IsValueType ? TypeReference.NullableForType(clrType) : TypeReference.ForType(clrType);
System\Data\EntityModel\Emitters\PropertyEmitter.cs (1)
813_nullable = typeReference.NullableForType(type);