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