11 references to FixUp
System.Data.Services.Design (11)
System\Data\EntityModel\Emitters\EntityContainerEmitter.cs (1)
239Generator.FixUps.Add(new FixUp(Item.Name + "." + _onContextCreatedString, FixUpType.MarkAbstractMethodAsPartial));
System\Data\EntityModel\Emitters\PropertyEmitter.cs (10)
114Generator.FixUps.Add(new FixUp(PropertyClassName + "." + OnChangingPartialMethodName(PropertyName), FixUpType.MarkAbstractMethodAsPartial)); 115Generator.FixUps.Add(new FixUp(PropertyClassName + "." + OnChangedPartialMethodName(PropertyName), FixUpType.MarkAbstractMethodAsPartial)); 415fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertyGetAsPrivate)); 419fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertySetAsPrivate)); 428fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertyGetAsInternal)); 432fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertySetAsInternal)); 441fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertyGetAsPublic)); 445fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertySetAsPublic)); 454fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertyGetAsProtected)); 458fixups.Add(new FixUp(propertyFqName, FixUpType.MarkPropertySetAsProtected));