3 types derived from EdmTypeAttribute
System.Data.Entity (3)
System\Data\Objects\DataClasses\EdmComplexTypeAttribute.cs (1)
19public sealed class EdmComplexTypeAttribute: EdmTypeAttribute
System\Data\Objects\DataClasses\EdmEntityTypeAttribute.cs (1)
18public sealed class EdmEntityTypeAttribute : EdmTypeAttribute
System\Data\Objects\DataClasses\EdmEnumTypeAttribute.cs (1)
19public sealed class EdmEnumTypeAttribute : EdmTypeAttribute
6 references to EdmTypeAttribute
System.Data.Entity (6)
System\Data\Metadata\ObjectLayer\ObjectItemAttributeAssemblyLoader.cs (6)
141clrType.GetCustomAttributes(typeof(EdmTypeAttribute), false /*inherit*/).Length == 0 || // not a type we track 172if (!type.IsDefined(typeof(EdmTypeAttribute), false)) 282EdmTypeAttribute[] typeAttributes = (EdmTypeAttribute[])clrType.GetCustomAttributes(typeof(EdmTypeAttribute), false /*inherit*/); 293EdmTypeAttribute typeAttribute = typeAttributes[0];