25 references to GetCanonicalModelTypeUsage
System.Data.Entity (25)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (17)
36
private static readonly DbNullExpression _binaryNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Binary));
37
private static readonly DbNullExpression _boolNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Boolean));
38
private static readonly DbNullExpression _byteNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Byte));
39
private static readonly DbNullExpression _dateTimeNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.DateTime));
40
private static readonly DbNullExpression _dateTimeOffsetNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.DateTimeOffset));
41
private static readonly DbNullExpression _decimalNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Decimal));
42
private static readonly DbNullExpression _doubleNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Double));
43
private static readonly DbNullExpression _geographyNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Geography));
44
private static readonly DbNullExpression _geometryNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Geometry));
45
private static readonly DbNullExpression _guidNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Guid));
46
private static readonly DbNullExpression _int16Null = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Int16));
47
private static readonly DbNullExpression _int32Null = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Int32));
48
private static readonly DbNullExpression _int64Null = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Int64));
49
private static readonly DbNullExpression _sbyteNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.SByte));
50
private static readonly DbNullExpression _singleNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Single));
51
private static readonly DbNullExpression _stringNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.String));
52
private static readonly DbNullExpression _timeNull = Null(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Time));
System\Data\Common\CommandTrees\ExpressionBuilder\Internal\ArgumentValidation.cs (1)
24
private static TypeUsage _booleanType = EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.Boolean);
System\Data\EntityClient\EntityParameter.cs (1)
450
typeUsage = EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(primitiveParameterType.PrimitiveTypeKind);
System\Data\Metadata\ClrPerspective.cs (1)
107
typeUsage = EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(primitiveType.PrimitiveTypeKind);
System\Data\Metadata\Edm\Provider\EdmProviderManifest.cs (1)
901
return
GetCanonicalModelTypeUsage
(primitiveType.PrimitiveTypeKind);
System\Data\Metadata\MetadataWorkspace.cs (1)
1357
return EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(primitiveTypeKind);
System\Data\Objects\ELinq\ExpressionConverter.cs (3)
1030
type = EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(primitiveTypeKind);
1058
type = EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(primitiveTypeKind);
1392
var escapeExpression = DbExpressionBuilder.Constant(EdmProviderManifest.Instance.
GetCanonicalModelTypeUsage
(PrimitiveTypeKind.String), new String(new char[] { escapeChar }));