30 references to Nullable
System.Data.Entity (11)
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
275Begin("Property", "Name", prop.Name, "Nullable", prop.Nullable);
System\Data\Common\EntitySql\SemanticAnalyzer.cs (1)
1361if (edmProperty != null && !edmProperty.Nullable)
System\Data\Common\Utils\MetadataHelper.cs (1)
318return ((EdmProperty)member).Nullable;
System\Data\Mapping\MetadataMappingHasherVisitor.cs (1)
382this.AddObjectContentToHashBuilder(edmProperty.Nullable);
System\Data\Mapping\StorageMappingItemLoader.cs (1)
2232if (keys[i].Nullable)
System\Data\Mapping\Update\Internal\UpdateTranslator.cs (1)
532!((EdmProperty)member).Nullable)
System\Data\Metadata\Edm\LightweightCodeGenerator.cs (1)
83property.Nullable);
System\Data\Metadata\EdmValidator.cs (1)
314if (keyProperty.Nullable)
System\Data\Objects\DataClasses\EntityReference.cs (1)
675if (member.ClrMetadata.Nullable)
System\Data\Objects\ObjectStateEntryOriginalDbUpdatableDataRecord.cs (1)
109!member.CdmMetadata.Nullable)
System\Data\SqlClient\SqlProviderUtilities.cs (1)
400AppendSql(column.Nullable ? " null" : " not null");
System.Data.Entity.Design (13)
System\Data\Entity\Design\Common\OneToOneMappingSerializer.cs (2)
206if (!property.Nullable) 394if (fkColumn.Nullable)
System\Data\Entity\Design\EntityModelSchemaGenerator.cs (2)
955nullableColumnsImplyingOneToOneMultiplicity = storeConstraint.ToProperties.All(p => p.Nullable == false); 959nullableColumnsImplyingOneToOneMultiplicity = storeConstraint.ToProperties.Any(p => p.Nullable == false);
System\Data\Entity\Design\EntityStoreSchemaGenerator.cs (2)
945if (property.Nullable) 968if (!property.Nullable)
System\Data\EntityModel\Emitters\AttributeEmitter.cs (2)
220Debug.Assert(emitter.Item.Nullable == false, "An EntityKeyProperty cannot be nullable."); 225if (!emitter.Item.Nullable)
System\Data\EntityModel\Emitters\PropertyEmitter.cs (4)
247new CodePrimitiveExpression(Item.Nullable), 481parameters.Add(new CodePrimitiveExpression(Item.Nullable)); 606if (property.Nullable) 698if (!property.Nullable && value.Equals(TypeSystem.GetDefaultValue(value.GetType())))
System\Data\EntityModel\Emitters\StructuredTypeEmitter.cs (1)
271if (property.Nullable)
System.Data.Services.Design (5)
System\Data\EntityModel\Emitters\PropertyEmitter.cs (4)
531if (property.Nullable) 637if (!property.Nullable && value.Equals(TypeSystem.GetDefaultValue(value.GetType()))) 645if (!property.Nullable && value.Equals(TypeSystem.GetDefaultValue(value.GetType()))) 653if (!property.Nullable && value.Equals(TypeSystem.GetDefaultValue(value.GetType())))
System\Data\EntityModel\Emitters\StructuredTypeEmitter.cs (1)
272if (property.Nullable)
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceMemberPath.cs (1)
91get { return this.property.Nullable; }