1 instantiation of SchemaEntityType
System.Data.Entity (1)
System\Data\EntityModel\SchemaObjectModel\Schema.cs (1)
1049
SchemaEntityType itemType = new
SchemaEntityType
(this);
41 references to SchemaEntityType
System.Data.Entity (41)
System\Data\EntityModel\SchemaObjectModel\EntityContainer.cs (10)
361
Dictionary<
SchemaEntityType
, EntityContainerEntitySet> baseEntitySetTypes = new Dictionary<
SchemaEntityType
, EntityContainerEntitySet>();
375
SchemaEntityType
itemType = type as
SchemaEntityType
;
426
private static bool TypeIsSubTypeOf(
SchemaEntityType
itemType, Dictionary<
SchemaEntityType
, EntityContainerEntitySet> baseEntitySetTypes, out EntityContainerEntitySet set)
436
for (
SchemaEntityType
baseType = itemType.BaseType as
SchemaEntityType
; baseType != null; baseType = baseType.BaseType as
SchemaEntityType
)
449
private static bool TypeDefinesNewConcurrencyProperties(
SchemaEntityType
itemType)
System\Data\EntityModel\SchemaObjectModel\EntityContainerEntitySet.cs (3)
22
private
SchemaEntityType
_entityType = null;
46
public
SchemaEntityType
EntityType
218
_entityType = type as
SchemaEntityType
;
System\Data\EntityModel\SchemaObjectModel\EntityKeyElement.cs (3)
30
public EntityKeyElement(
SchemaEntityType
parentElement )
73
PropertyRefElement property = new PropertyRefElement((
SchemaEntityType
)ParentElement);
86
if (!property.ResolveNames((
SchemaEntityType
)this.ParentElement))
System\Data\EntityModel\SchemaObjectModel\FunctionImportElement.cs (4)
193
if (type is
SchemaEntityType
&& returnTypeCollectionKind == CollectionKind.Bag) return true;
198
if (type is
SchemaEntityType
&& returnTypeCollectionKind == CollectionKind.None) return true;
225
SchemaEntityType
entityType = returnType as
SchemaEntityType
;
System\Data\EntityModel\SchemaObjectModel\IRelationshipEnd.cs (1)
28
SchemaEntityType
Type { get; }
System\Data\EntityModel\SchemaObjectModel\ItemType.cs (3)
54
if (!(BaseType is
SchemaEntityType
))
143
System.Diagnostics.Debug.Assert(BaseType is
SchemaEntityType
, "ItemType.BaseType is not ItemType");
144
return (BaseType as
SchemaEntityType
).KeyProperties;
System\Data\EntityModel\SchemaObjectModel\KeyProperty.cs (1)
66
internal bool ResolveNames(
SchemaEntityType
entityType)
System\Data\EntityModel\SchemaObjectModel\NavigationProperty.cs (3)
34
public NavigationProperty(
SchemaEntityType
parent)
42
public new
SchemaEntityType
ParentElement
46
return base.ParentElement as
SchemaEntityType
;
System\Data\EntityModel\SchemaObjectModel\ReferentialConstraint.cs (1)
245
private static void IsKeyProperty(ReferentialConstraintRoleElement roleElement,
SchemaEntityType
itemType,
System\Data\EntityModel\SchemaObjectModel\ReferentialConstraintRoleElement.cs (1)
134
if (!property.ResolveNames((
SchemaEntityType
)_end.Type))
System\Data\EntityModel\SchemaObjectModel\RelationshipEnd.cs (3)
24
private
SchemaEntityType
_type;
39
public
SchemaEntityType
Type
94
Type = element as
SchemaEntityType
;
System\Data\EntityModel\SchemaObjectModel\Schema.cs (1)
1049
SchemaEntityType
itemType = new SchemaEntityType(this);
System\Data\EntityModel\SchemaObjectModel\ValidationHelper.cs (1)
98
if (type != null && !(type is
SchemaEntityType
))
System\Data\Metadata\Converter.cs (6)
138
foreach (Som.
SchemaEntityType
element in somSchema.SchemaTypes.OfType<Som.
SchemaEntityType
>())
203
else if (element is Som.
SchemaEntityType
)
205
item = ConvertToEntityType((Som.
SchemaEntityType
)element,
315
private static EntityType ConvertToEntityType(Som.
SchemaEntityType
element,
370
private static void LoadEntityTypePhase2(Som.
SchemaEntityType
element,