9 references to FixUps
System.Data.Entity.Design (9)
System\Data\EntityModel\Emitters\ClientApiGenerator.cs (2)
110if (FixUps.Count == 0 || !FixUpCollection.IsLanguageSupported(Language)) 137FixUps.Do(reader, target.GetOrCreateTextWriter(), Language, SourceObjectNamespaceName != string.Empty);
System\Data\EntityModel\Emitters\EntityContainerEmitter.cs (1)
277Generator.FixUps.Add(new FixUp(Item.Name + "." + _onContextCreatedString, FixUpType.MarkAbstractMethodAsPartial));
System\Data\EntityModel\Emitters\NavigationPropertyEmitter.cs (2)
138PropertyEmitter.AddGetterSetterFixUp(Generator.FixUps, GetFullyQualifiedPropertyName(property.Name), 140PropertyEmitter.AddGetterSetterFixUp(Generator.FixUps, GetFullyQualifiedPropertyName(property.Name),
System\Data\EntityModel\Emitters\PropertyEmitter.cs (4)
109Generator.FixUps.Add(new FixUp(PropertyClassName + "." + OnChangingPartialMethodName(PropertyName), FixUpType.MarkAbstractMethodAsPartial)); 110Generator.FixUps.Add(new FixUp(PropertyClassName + "." + OnChangedPartialMethodName(PropertyName), FixUpType.MarkAbstractMethodAsPartial)); 224AddGetterSetterFixUp(Generator.FixUps, PropertyFQName, GetGetterAccessibility(Item), access, true); 292AddGetterSetterFixUp(Generator.FixUps, PropertyFQName, GetSetterAccessibility(Item), access, false);