11 writes to FixedLength
System.Data.Entity (11)
System\Data\Common\Internal\DbTypeMap.cs (5)
25internal static readonly TypeUsage AnsiString = CreateType(PrimitiveTypeKind.String, new FacetValues { Unicode = false, FixedLength = false, MaxLength = (int?)null }); 26internal static readonly TypeUsage AnsiStringFixedLength = CreateType(PrimitiveTypeKind.String, new FacetValues { Unicode = false, FixedLength = true, MaxLength = (int?)null }); 27internal static readonly TypeUsage String = CreateType(PrimitiveTypeKind.String, new FacetValues { Unicode = true, FixedLength = false, MaxLength = (int?)null }); 28internal static readonly TypeUsage StringFixedLength = CreateType(PrimitiveTypeKind.String, new FacetValues { Unicode = true, FixedLength = true, MaxLength = (int?)null }); 31internal static readonly TypeUsage Xml = CreateType(PrimitiveTypeKind.String, new FacetValues { Unicode = true, FixedLength = false, MaxLength = (int?)null });
System\Data\Metadata\Edm\FacetValues.cs (1)
115values.FixedLength = (bool?)null;
System\Data\Metadata\Edm\TypeUsage.cs (4)
134new FacetValues{ MaxLength = maxLength, Unicode = isUnicode, FixedLength = isFixedLength}); 160Unicode = isUnicode, FixedLength = isFixedLength}); 187new FacetValues{MaxLength = maxLength, FixedLength = isFixedLength}); 209FixedLength = isFixedLength});
System\Data\Metadata\TypeHelpers.cs (1)
825new FacetValues{ Unicode = isUnicode, MaxLength = TypeUsage.DefaultMaxLengthFacetValue, FixedLength = false, Nullable = false});