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