9 references to EdmScalarPropertyAttribute
System.Data.Entity (9)
System\Data\Metadata\Edm\EdmProperty.cs (1)
95/// <see cref="System.Data.Objects.DataClasses.EdmScalarPropertyAttribute"/> attribute. This flag can
System\Data\Metadata\ObjectLayer\ObjectItemAttributeAssemblyLoader.cs (8)
472else if (property.IsDefined(typeof(EdmScalarPropertyAttribute), false)) 617Debug.Assert(property.IsDefined(typeof(EdmScalarPropertyAttribute), false), "The property must have a scalar attribute"); 634object[] attrs = property.GetCustomAttributes(typeof(EdmScalarPropertyAttribute), false); 638isEntityKeyProperty = ((EdmScalarPropertyAttribute)attrs[0]).EntityKeyProperty; 639bool isNullable = ((EdmScalarPropertyAttribute)attrs[0]).IsNullable; 675var edmScalarPropertyAttribute = (EdmScalarPropertyAttribute)clrProperty.GetCustomAttributes(typeof(EdmScalarPropertyAttribute), false).Single();