11 references to FixUp
System.Data.Entity.Design (11)
System\Data\EntityModel\Emitters\EntityContainerEmitter.cs (1)
277Generator.FixUps.Add(new FixUp(Item.Name + "." + _onContextCreatedString, FixUpType.MarkAbstractMethodAsPartial));
System\Data\EntityModel\Emitters\PropertyEmitter.cs (10)
109Generator.FixUps.Add(new FixUp(PropertyClassName + "." + OnChangingPartialMethodName(PropertyName), FixUpType.MarkAbstractMethodAsPartial)); 110Generator.FixUps.Add(new FixUp(PropertyClassName + "." + OnChangedPartialMethodName(PropertyName), FixUpType.MarkAbstractMethodAsPartial)); 397fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertyGetAsPrivate)); 401fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertySetAsPrivate)); 410fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertyGetAsInternal)); 414fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertySetAsInternal)); 423fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertyGetAsPublic)); 427fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertySetAsPublic)); 436fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertyGetAsProtected)); 440fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertySetAsProtected));