11 references to Item
System.Data.Services.Design (11)
System\Data\EntityModel\Emitters\NavigationPropertyEmitter.cs (1)
303
return base.
Item
as NavigationProperty;
System\Data\EntityModel\Emitters\PropertyEmitter.cs (1)
159
return base.
Item
as EdmProperty;
System\Data\EntityModel\Emitters\PropertyEmitterBase.cs (9)
39
Generator.VerifyLanguageCaseSensitiveCompatibilityForProperty(
Item
as EdmMember);
49
if (PropertyEmitter.GetGetterAccessibility(
Item
) == MemberAttributes.Assembly
50
&& PropertyEmitter.GetSetterAccessibility(
Item
) == MemberAttributes.Family)
52
Generator.AddError(Strings.GeneratedPropertyAccessibilityConflict(
Item
.Name, "Internal", "Protected"),
56
else if (PropertyEmitter.GetGetterAccessibility(
Item
) == MemberAttributes.Family
57
&& PropertyEmitter.GetSetterAccessibility(
Item
) == MemberAttributes.Assembly)
59
Generator.AddError(Strings.GeneratedPropertyAccessibilityConflict(
Item
.Name, "Protected", "Internal"),
77
if (_declaringTypeUsesStandardBaseType && Utils.DoesTypeReserveMemberName(
Item
.DeclaringType, name, Generator.LanguageAppropriateStringComparer))
82
StructuralType baseType =
Item
.DeclaringType.BaseType as StructuralType;