11 instantiations of 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));
21 references to FixUp
System.Data.Services.Design (21)
System\Data\EntityModel\Emitters\FixUpCollection.cs (21)
17internal sealed class FixUpCollection : List<FixUp> 43private Dictionary<string,List<FixUp>> _classFixUps; 85foreach ( FixUp fixUp in this ) 87List<FixUp> fixUps = null; 94fixUps = new List<FixUp>(); 140FixUp getterFixUp = null; 141FixUp setterFixUp = null; 225FixUp getterFixUp = null; 226FixUp setterFixUp = null; 356IList<FixUp> fixUps = ClassFixUps[className]; 357foreach ( FixUp fixUp in fixUps ) 420IList<FixUp> fixUps = ClassFixUps[className]; 421foreach ( FixUp fixUp in fixUps ) 438private FixUp FixUpSetter(string className,string propertyName) 440IList<FixUp> fixUps = ClassFixUps[className]; 441foreach ( FixUp fixUp in fixUps ) 455private FixUp FixUpGetter(string className, string propertyName) 457IList<FixUp> fixUps = ClassFixUps[className]; 458foreach (FixUp fixUp in fixUps) 709private Dictionary<string,List<FixUp>> ClassFixUps 715_classFixUps = new Dictionary<string,List<FixUp>>();