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