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