9 references to IsUnboundedFacetValue
System.Data.Entity (9)
System\Data\Common\DbCommandDefinition.cs (1)
257
if (!Helper.
IsUnboundedFacetValue
(maxLengthFacet))
System\Data\EntityModel\SchemaObjectModel\TypeUsageBuilder.cs (1)
475
if (Helper.
IsUnboundedFacetValue
(maxLenFacet))
System\Data\Metadata\CacheForPrimitiveTypes.cs (1)
108
Helper.
IsUnboundedFacetValue
(facet))
System\Data\Metadata\Converter.cs (1)
1378
if (Helper.
IsUnboundedFacetValue
(maxLengthFacet))
System\Data\Metadata\Edm\Facet.cs (1)
90
if (value != null && !Helper.
IsUnboundedFacetValue
(result) && !Helper.IsVariableFacetValue(result) && result.FacetType.ClrType != null)
System\Data\Metadata\TypeHelpers.cs (2)
252
if (type.Facets.TryGetValue(facetName, false, out byteFacet) && byteFacet.Value != null && !Helper.
IsUnboundedFacetValue
(byteFacet))
265
if (type.Facets.TryGetValue(facetName, false, out intFacet) && intFacet.Value != null && !Helper.
IsUnboundedFacetValue
(intFacet) && !Helper.IsVariableFacetValue(intFacet))
System\Data\SqlClient\SqlProviderManifest.cs (2)
593
bool isMaxLength = Helper.
IsUnboundedFacetValue
(f) || null == f.Value || (int)f.Value > binaryMaxSize;
632
bool isMaxLength = Helper.
IsUnboundedFacetValue
(f) || null == f.Value || (int)f.Value > (isUnicode ? nvarcharMaxSize : varcharMaxSize);