12 references to IsConstant
System.Data.Entity (7)
System\Data\EntityModel\SchemaObjectModel\TypeUsageBuilder.cs (1)
124
if (defaultFacet.Description.
IsConstant
)
System\Data\Metadata\Converter.cs (1)
1273
if (!targetFacet.Description.
IsConstant
)
System\Data\Metadata\Edm\TypeUsage.cs (1)
545
if (!description.
IsConstant
&& values.TryGetFacet(description, out facet))
System\Data\Metadata\TypeHelpers.cs (1)
301
return Helper.GetFacet(((PrimitiveType)type.EdmType).FacetDescriptions, facetName).
IsConstant
;
System\Data\SqlClient\SqlProviderManifest.cs (3)
609
Debug.Assert(tu.Facets[DbProviderManifest.MaxLengthFacetName].Description.
IsConstant
, "varbinary(max) is not constant!");
651
Debug.Assert(tu.Facets[DbProviderManifest.MaxLengthFacetName].Description.
IsConstant
, "NVarchar(max) is not constant!");
680
Debug.Assert(tu.Facets[DbProviderManifest.MaxLengthFacetName].Description.
IsConstant
, "varchar(max) is not constant!");
System.Data.Entity.Design (5)
System\Data\Entity\Design\Common\MetadataItemSerializer.cs (1)
537
if (providerFacetDescription.
IsConstant
)
System\Data\Entity\Design\EntityStoreSchemaGenerator.cs (4)
1345
if (!row.IsPrecisionNull() && !precision.Description.
IsConstant
)
1369
if (!row.IsScaleNull() && !scale.Description.
IsConstant
)
1398
if (!row.IsDateTimePrecisionNull() && !datetimePrecision.Description.
IsConstant
)
1426
if (!row.IsMaximumLengthNull() && !maxLength.Description.
IsConstant
)