Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
13206 lines (13174 loc) · 802 KB

File metadata and controls

13206 lines (13174 loc) · 802 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>EntityFramework</name>
</assembly>
<members>
<member name="T:System.Data.Edm.Strings">
<summary>
Strongly-typed and parameterized string resources.
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmPrimitiveType_SetPropertyNotSupported(System.Object)">
<summary>
A string like "The '{0}' property of EdmPrimitiveType is fixed and cannot be set."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_SystemNamespaceEncountered(System.Object)">
<summary>
A string like "The namespace '{0}' is a system namespace and cannot be used by other schemas. Choose another namespace name."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_SimilarRelationshipEnd(System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
A string like "Role '{0}' in AssociationSets ‘{1}’ and ‘{2}’ refers to the same EntitySet '{3}' in EntityContainer '{4}'. Make sure that if two or more AssociationSets refer to the same AssociationType, the ends do not refer to the same EntitySet."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidEntitySetNameReference(System.Object,System.Object)">
<summary>
A string like "The referenced EntitySet ‘{0}’ for End ‘{1}’ could not be found in the containing EntityContainer."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_ConcurrencyRedefinedOnSubTypeOfEntitySetType(System.Object,System.Object,System.Object)">
<summary>
A string like "Type '{0}' is derived from type '{1}' that is the type for EntitySet '{2}'. Type '{0}' defines new concurrency requirements that are not allowed for subtypes of base EntitySet types."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_EntitySetTypeHasNoKeys(System.Object,System.Object)">
<summary>
A string like "EntitySet ‘{0}’ is based on type ‘{1}’ that has no keys defined."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_DuplicateEndName(System.Object)">
<summary>
A string like "The end name ‘{0}’ is already defined."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_DuplicatePropertyNameSpecifiedInEntityKey(System.Object,System.Object)">
<summary>
A string like "The key specified in EntityType '{0}' is not valid. Property '{1}' is referenced more than once in the Key element."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidCollectionKindNotCollection(System.Object)">
<summary>
A string like "Property '{0}' has a CollectionKind specified but is not a collection property."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidCollectionKindNotV1_1(System.Object)">
<summary>
A string like "Property '{0}' has a CollectionKind specified. CollectionKind is only supported in version 1.1 EDM models."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidComplexTypeAbstract(System.Object)">
<summary>
A string like "ComplexType '{0}' is marked as abstract. Abstract ComplexTypes are only supported in version 1.1 EDM models."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidComplexTypePolymorphic(System.Object)">
<summary>
A string like "ComplexType '{0}' has a BaseType specified. ComplexType inheritance is only supported in version 1.1 EDM models."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidKeyNullablePart(System.Object,System.Object)">
<summary>
A string like "Key part '{0}' for type ‘{1}’ is not valid. All parts of the key must be non-nullable."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_EntityKeyMustBeScalar(System.Object,System.Object)">
<summary>
A string like "The property '{0}' in EntityType '{1}' is not valid. All properties that are part of the EntityKey must be of PrimitiveType."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidKeyKeyDefinedInBaseClass(System.Object,System.Object)">
<summary>
A string like "Key usage is not valid. The {0} class cannot define keys because one of its base classes (‘{1}’) defines keys."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_KeyMissingOnEntityType(System.Object)">
<summary>
A string like "EntityType '{0}' has no key defined. Define the key for this EntityType."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_BadNavigationPropertyUndefinedRole(System.Object,System.Object,System.Object)">
<summary>
A string like "NavigationProperty is not valid. Role ‘{0}’ or Role ‘{1}’ is not defined in Relationship ‘{2}’."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_EndWithManyMultiplicityCannotHaveOperationsSpecified(System.Object,System.Object)">
<summary>
A string like "End '{0}' on relationship '{1}' cannot have an operation specified because its multiplicity is '*'. Operations cannot be specified on ends with multiplicity '*'."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_EndNameAlreadyDefinedDuplicate(System.Object)">
<summary>
A string like "Each Name and PluralName in a relationship must be unique. '{0}' is already defined."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_SameRoleReferredInReferentialConstraint(System.Object)">
<summary>
A string like "In relationship '{0}', the Principal and Dependent Role of the referential constraint refer to the same Role in the relationship type."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidMultiplicityFromRoleUpperBoundMustBeOne(System.Object,System.Object)">
<summary>
A string like "Multiplicity is not valid in Role '{0}' in relationship '{1}'. Valid values for multiplicity for the Principal Role are '0..1' or '1'."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidMultiplicityFromRoleToPropertyNullableV1(System.Object,System.Object)">
<summary>
A string like "Multiplicity is not valid in Role '{0}' in relationship '{1}'. Because all the properties in the Dependent Role are nullable, multiplicity of the Principal Role must be '0..1'."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidMultiplicityFromRoleToPropertyNonNullableV1(System.Object,System.Object)">
<summary>
A string like "Multiplicity conflicts with the referential constraint in Role '{0}' in relationship '{1}'. Because at least one of the properties in the Dependent Role is non-nullable, multiplicity of the Principal Role must be '1'."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidMultiplicityFromRoleToPropertyNonNullableV2(System.Object,System.Object)">
<summary>
A string like "Multiplicity conflicts with the referential constraint in Role '{0}' in relationship '{1}'. Because all of the properties in the Dependent Role are non-nullable, multiplicity of the Principal Role must be '1'."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidToPropertyInRelationshipConstraint(System.Object,System.Object,System.Object)">
<summary>
A string like "Properties referred by the Dependent Role ‘{0}’ must be a subset of the key of the EntityType ‘{1}’ referred to by the Dependent Role in the referential constraint for relationship ‘{2}’."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidMultiplicityToRoleUpperBoundMustBeOne(System.Object,System.Object)">
<summary>
A string like "Multiplicity is not valid in Role '{0}' in relationship '{1}'. Because the Dependent Role refers to the key properties, the upper bound of the multiplicity of the Dependent Role must be ‘1’."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidMultiplicityToRoleUpperBoundMustBeMany(System.Object,System.Object)">
<summary>
A string like "Multiplicity is not valid in Role '{0}' in relationship '{1}'. Because the Dependent Role properties are not the key properties, the upper bound of the multiplicity of the Dependent Role must be ‘*’."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_TypeMismatchRelationshipConstraint(System.Object,System.Object,System.Object,System.Object,System.Object)">
<summary>
A string like "The types of all properties in the Dependent Role of a referential constraint must be the same as the corresponding property types in the Principal Role. The type of property '{0}' on entity '{1}' does not match the type of property '{2}' on entity '{3}' in the referential constraint '{4}'."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidPropertyInRelationshipConstraint(System.Object,System.Object)">
<summary>
A string like "There is no property with name '{0}' defined in the type referred to by Role '{1}'."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_NullableComplexType(System.Object)">
<summary>
A string like "A nullable ComplexType is not supported. Property '{0}' must not allow nulls."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidPropertyType(System.Object)">
<summary>
A string like "A property cannot be of type ‘{0}’. The property type must be a ComplexType or a PrimitiveType."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_DuplicateEntityContainerMemberName(System.Object)">
<summary>
A string like "Each member name in an EntityContainer must be unique. A member with name '{0}' is already defined."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_TypeNameAlreadyDefinedDuplicate(System.Object)">
<summary>
A string like "Each type name in a schema must be unique. Type name '{0}' is already defined."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidMemberNameMatchesTypeName(System.Object,System.Object)">
<summary>
A string like "Name ‘{0}’ cannot be used in type ‘{1}’. Member names cannot be the same as their enclosing type."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_PropertyNameAlreadyDefinedDuplicate(System.Object)">
<summary>
A string like "Each property name in a type must be unique. Property name '{0}' is already defined."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_CycleInTypeHierarchy(System.Object)">
<summary>
A string like "A cycle was detected in the type hierarchy of '{0}'."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidPropertyType_V1_1(System.Object)">
<summary>
A string like "A property cannot be of type ‘{0}’. The property type must be a ComplexType, a PrimitiveType, or a CollectionType."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmModel_NameIsTooLong(System.Object)">
<summary>
A string like "The specified name must not be longer than 480 characters: '{0}'."
</summary>
</member>
<member name="M:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmModel_NameIsNotAllowed(System.Object)">
<summary>
A string like "The specified name is not allowed: '{0}'."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Semantic_BadNavigationPropertyRolesCannotBeTheSame">
<summary>
A string like "NavigationProperty is not valid. The FromRole and ToRole are the same."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Semantic_InvalidOperationMultipleEndsInAssociation">
<summary>
A string like "OnDelete can be specified on only one End of an EdmAssociation."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Semantic_MismatchNumberOfPropertiesinRelationshipConstraint">
<summary>
A string like "The number of properties in the Dependent and Principal Roles in a relationship constraint must be identical."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_MissingName">
<summary>
A string like "The name is missing or not valid."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmAssociationType_AssocationEndMustNotBeNull">
<summary>
A string like "AssociationEnd must not be null."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmAssociationConstraint_DependentEndMustNotBeNull">
<summary>
A string like "DependentEnd must not be null."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmAssociationConstraint_DependentPropertiesMustNotBeEmpty">
<summary>
A string like "DependentProperties must not be empty."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmNavigationProperty_AssocationMustNotBeNull">
<summary>
A string like "Association must not be null."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmNavigationProperty_ResultEndMustNotBeNull">
<summary>
A string like "ResultEnd must not be null."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmAssociationEnd_EntityTypeMustNotBeNull">
<summary>
A string like "EntityType must not be null."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmEntitySet_ElementTypeMustNotBeNull">
<summary>
A string like "ElementType must not be null."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmAssociationSet_ElementTypeMustNotBeNull">
<summary>
A string like "ElementType must not be null."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmAssociationSet_SourceSetMustNotBeNull">
<summary>
A string like "SourceSet must not be null."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmAssociationSet_TargetSetMustNotBeNull">
<summary>
A string like "TargetSet must not be null."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.EdmModel_Validator_Syntactic_EdmTypeReferenceNotValid">
<summary>
A string like "The type is not a valid EdmTypeReference."
</summary>
</member>
<member name="P:System.Data.Edm.Strings.Serializer_OneNamespaceAndOneContainer">
<summary>
A string like "Serializer can only serialize an EdmModel that has one EdmNamespace and one EdmEntityContainer."
</summary>
</member>
<member name="T:System.Data.Edm.Error">
<summary>
Strongly-typed and parameterized exception factory.
</summary>
</member>
<member name="M:System.Data.Edm.Error.ArgumentNull(System.String)">
<summary>
The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.
</summary>
</member>
<member name="M:System.Data.Edm.Error.ArgumentOutOfRange(System.String)">
<summary>
The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method.
</summary>
</member>
<member name="M:System.Data.Edm.Error.NotImplemented">
<summary>
The exception that is thrown when the author has yet to implement the logic at this point in the program. This can act as an exception based TODO tag.
</summary>
</member>
<member name="M:System.Data.Edm.Error.NotSupported">
<summary>
The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.
</summary>
</member>
<member name="T:System.Data.Edm.Common.DataModelAnnotation">
<summary>
Allows the construction and modification of a user-specified annotation (name-value pair) on a <see cref="T:System.Data.Edm.Common.DataModelItem"/> instance.
</summary>
</member>
<member name="T:System.Data.Edm.Common.INamedDataModelItem">
<summary>
INamedDataModelItem is implemented by model-specific base types for all types with a <see cref="P:System.Data.Edm.Common.INamedDataModelItem.Name"/> property.
<seealso cref="T:System.Data.Edm.EdmNamedMetadataItem"/>
</summary>
</member>
<member name="P:System.Data.Edm.Common.INamedDataModelItem.Name">
<summary>
Gets or sets the currently assigned name.
</summary>
</member>
<member name="M:System.Data.Edm.Common.DataModelAnnotation.#ctor">
<summary>
Constructs a new DataModelAnnotation
</summary>
</member>
<member name="P:System.Data.Edm.Common.DataModelAnnotation.Namespace">
<summary>
Gets or sets an optional namespace that can be used to distinguish the annotation from others with the same <see cref="P:System.Data.Edm.Common.DataModelAnnotation.Name"/> value.
</summary>
</member>
<member name="P:System.Data.Edm.Common.DataModelAnnotation.Name">
<summary>
Gets or sets the name of the annotation.
</summary>
</member>
<member name="P:System.Data.Edm.Common.DataModelAnnotation.Value">
<summary>
Gets or sets the value of the annotation.
</summary>
</member>
<member name="T:System.Data.Edm.Common.DataModelErrorEventArgs">
<summary>
</summary>
</member>
<member name="T:System.Data.Edm.Common.DataModelEventArgs">
<summary>
DataModelEventArgs is the base argument type for all events raised by consumers of Entity Data Model (EDM) models.
</summary>
</member>
<member name="P:System.Data.Edm.Common.DataModelEventArgs.Item">
<summary>
Gets a value indicating the <see cref="T:System.Data.Edm.Common.DataModelItem"/> that caused the event to be raised.
</summary>
</member>
<member name="P:System.Data.Edm.Common.DataModelErrorEventArgs.PropertyName">
<summary>
Gets an optional value indicating which property of the source item caused the event to be raised.
</summary>
</member>
<member name="P:System.Data.Edm.Common.DataModelErrorEventArgs.ErrorCode">
<summary>
Gets a value that identifies the specific error that is being raised.
</summary>
</member>
<member name="P:System.Data.Edm.Common.DataModelErrorEventArgs.ErrorMessage">
<summary>
Gets an optional descriptive message the describes the error that is being raised.
</summary>
</member>
<member name="T:System.Data.Edm.Common.DataModelItem">
<summary>
DataModelItem is the base for all types in the EDM metadata reflection, construction and modification API.
</summary>
</member>
<member name="T:System.Data.Edm.Common.IAnnotatedDataModelItem">
<summary>
IAnnotatedDataModelItem is implemented by model-specific base types for all types with an <see cref="P:System.Data.Edm.Common.IAnnotatedDataModelItem.Annotations"/> property.
<seealso cref="T:System.Data.Edm.EdmDataModelItem"/>
</summary>
</member>
<member name="P:System.Data.Edm.Common.IAnnotatedDataModelItem.Annotations">
<summary>
Gets or sets the currently assigned annotations.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbAliasedMetadataItem">
<summary>
DbAliasedMetadataItem provides the base type for all Database Metadata types that can have an optional <see cref="P:System.Data.Edm.Db.DbAliasedMetadataItem.DatabaseIdentifier"/> that should be used instead of the item's <see cref="P:System.Data.Edm.Db.DbNamedMetadataItem.Name"/> when referring to the item in the database.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbNamedMetadataItem">
<summary>
NamedDbItem is the base for all types in the Database Metadata construction and modification API with a <see cref="P:System.Data.Edm.Db.DbNamedMetadataItem.Name"/> property.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbMetadataItem">
<summary>
The base for all all Database Metadata types that support annotation using <see cref="T:System.Data.Edm.Common.DataModelAnnotation"/>.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbDataModelItem">
<summary>
DbDataModelItem is the base for all types in the Database Metadata construction and modification API.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbMetadataItem.Annotations">
<summary>
Gets or sets the currently assigned annotations.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbNamedMetadataItem.Name">
<summary>
Gets or sets the currently assigned name.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbAliasedMetadataItem.DatabaseIdentifier">
<summary>
Gets an optional alternative identifier that should be used when referring to this item in the database.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbColumnMetadata">
<summary>
When implemented in derived types, allows the construction and modification of a column in a Database Metadata table or row.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbColumnMetadata.TypeName">
<summary>
Gets or sets a string indicating the database-specific type of the column.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbColumnMetadata.IsNullable">
<summary>
Gets or sets a value indicating whether the column is nullable.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbColumnMetadata.Facets">
<summary>
Gets or sets an optional <see cref="T:System.Data.Edm.Db.DbPrimitiveTypeFacets"/> instance that applies additional constraints to the referenced database-specific type of the column.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbDatabaseMetadata">
<summary>
Allows the construction and modification of a database in a Database Metadata model.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbDatabaseMetadata.Version">
<summary>
Gets or sets an optional value that indicates the database model version.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbDatabaseMetadata.Schemas">
<summary>
Gets or sets the collection of <see cref="T:System.Data.Edm.Db.DbSchemaMetadata"/> instances that specifies the schemas within the database.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbForeignKeyConstraintMetadata">
<summary>
Allows the construction and modification of a foreign key constraint sourced by a <see cref="T:System.Data.Edm.Db.DbTableMetadata"/> instance.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbForeignKeyConstraintMetadata.DeleteAction">
<summary>
Gets or sets the <see cref="T:System.Data.Edm.Db.DbOperationAction"/> to take when a delete operation is attempted.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbItemKind">
<summary>
Indicates which Database Metadata concept is represented by a given item.
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbItemKind.Database">
<summary>
Database Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbItemKind.Schema">
<summary>
Schema Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbItemKind.ForeignKeyConstraint">
<summary>
Foreign Key Constraint Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbItemKind.Function">
<summary>
Function Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbItemKind.FunctionParameter">
<summary>
Function Parameter Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbItemKind.FunctionType">
<summary>
Function Return or Parameter Type Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbItemKind.RowColumn">
<summary>
Row Column Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbItemKind.Table">
<summary>
Table Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbItemKind.TableColumn">
<summary>
Table Column Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbItemKind.PrimitiveTypeFacets">
<summary>
Primitive Facets Kind
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbOperationAction">
<summary>
Specifies the action to take on a given operation.
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbOperationAction.None">
<summary>
Default behavior
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbOperationAction.Restrict">
<summary>
Restrict the operation
</summary>
</member>
<member name="F:System.Data.Edm.Db.DbOperationAction.Cascade">
<summary>
Cascade the operation
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbPrimitiveTypeFacets">
<summary>
Allows the construction and modification of additional constraints that can be applied to a specific use of a primitive type in a Database Metadata item.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbPrimitiveTypeFacets.HasValue">
<summary>
Returns <code>true</code> if any facet value property currently has a non-null value; otherwise returns <code>false</code>.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbPrimitiveTypeFacets.IsFixedLength">
<summary>
Gets or sets an optional value indicating whether the referenced type should be considered to have a fixed or variable length.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbPrimitiveTypeFacets.IsMaxLength">
<summary>
Gets or sets an optional value indicating whether the referenced type should be considered to have its intrinsic maximum length, rather than a specific value.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbPrimitiveTypeFacets.IsUnicode">
<summary>
Gets or sets an optional value indicating whether the referenced type should be considered to be Unicode or non-Unicode.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbPrimitiveTypeFacets.MaxLength">
<summary>
Gets or sets an optional value indicating the current constraint on the type's maximum length.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbPrimitiveTypeFacets.Precision">
<summary>
Gets or sets an optional value indicating the current constraint on the type's precision.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbPrimitiveTypeFacets.Scale">
<summary>
Gets or sets an optional value indicating the current constraint on the type's scale.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbSchemaMetadata">
<summary>
Allows the construction and modification of a database schema in a <see cref="T:System.Data.Edm.Db.DbDatabaseMetadata"/> database model.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbSchemaMetadata.Tables">
<summary>
Gets or sets the collection of <see cref="T:System.Data.Edm.Db.DbTableMetadata"/> instances that specifies the tables declared within the schema.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbSchemaMetadataItem">
<summary>
DbSchemaMetadataItem is the base for all types that can be contained in a <see cref="T:System.Data.Edm.Db.DbSchemaMetadata"/> schema.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbTableColumnMetadata">
<summary>
Allows the construction and modification of a column in a <see cref="T:System.Data.Edm.Db.DbTableMetadata"/> table.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbTableColumnMetadata.IsPrimaryKeyColumn">
<summary>
Gets or sets a value indicating whether the column is part of the table's primary key.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbTableColumnMetadata.StoreGeneratedPattern">
<summary>
Gets or sets a <see cref="T:System.Data.Edm.Db.DbStoreGeneratedPattern"/> value indicating if and how the value of the column is automatically generated.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbTableColumnMetadata.Collation">
<summary>
Gets or sets an optional value indicating the collation specific to this table column.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbTableColumnMetadata.DefaultValue">
<summary>
Gets or sets an optional value that specifies the default value for the column.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbTableMetadata">
<summary>
Allows the construction and modification a table in a <see cref="T:System.Data.Edm.Db.DbSchemaMetadata"/> database schema.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbTableMetadata.Columns">
<summary>
Gets or sets the collection of <see cref="T:System.Data.Edm.Db.DbTableColumnMetadata"/> instances that specifies the columns present within the table.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbTableMetadata.KeyColumns">
<summary>
Gets or sets the collection of <see cref="T:System.Data.Edm.Db.DbTableColumnMetadata"/> instances from the <see cref="P:System.Data.Edm.Db.DbTableMetadata.Columns"/> collection of the table that are part of the primary key.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbTableMetadata.ForeignKeyConstraints">
<summary>
Gets or sets the collection of <see cref="T:System.Data.Edm.Db.DbForeignKeyConstraintMetadata"/> instances that defines the foreign key constraints sourced from the table.
</summary>
</member>
<member name="T:System.Data.Edm.Db.DbTypeMetadata">
<summary>
Represents a specific use of a type in a Database Metadata item.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbTypeMetadata.Facets">
<summary>
Gets or sets an optional <see cref="T:System.Data.Edm.Db.DbPrimitiveTypeFacets"/> instance that applies additional constraints to a referenced primitive type.
</summary>
<remarks>Accessing this property forces the creation of a DbPrimitiveTypeFacets value if no value has previously been set. Use <see cref="P:System.Data.Edm.Db.DbTypeMetadata.HasFacets"/> to determine whether or not this property currently has a value.</remarks>
</member>
<member name="P:System.Data.Edm.Db.DbTypeMetadata.IsCollection">
<summary>
Gets or sets a value indicating whether the represented type is a collection type.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbTypeMetadata.IsNullable">
<summary>
Gets or sets an optional value indicating whether the referenced type should be considered nullable.
</summary>
</member>
<member name="P:System.Data.Edm.Db.DbTypeMetadata.IsRow">
<summary>
Gets a value indicating whether the type has been configured as a row type by the addition of one or more RowColumns.
</summary>
</member>
<member name="T:System.Data.Edm.Db.Mapping.DbAssociationEndMapping">
<summary>
Represents the mapping of an EDM association end (<see cref="T:System.Data.Edm.EdmAssociationEnd"/>) as a collection of property mappings (<see cref="T:System.Data.Edm.Db.Mapping.DbEdmPropertyMapping"/>).
</summary>
</member>
<member name="T:System.Data.Edm.Db.Mapping.DbMappingMetadataItem">
<summary>
DbMappingMetadataItem is the base for all types in the EDM-to-Database Mapping construction and modification API that support annotation using <see cref="T:System.Data.Edm.Common.DataModelAnnotation"/>.
</summary>
</member>
<member name="T:System.Data.Edm.Db.Mapping.DbMappingModelItem">
<summary>
DbMappingModelItem is the base for all types in the EDM-to-Database Mapping construction and modification API.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbMappingMetadataItem.Annotations">
<summary>
Gets or sets the currently assigned annotations.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbAssociationEndMapping.AssociationEnd">
<summary>
Gets an <see cref="T:System.Data.Edm.EdmAssociationEnd"/> value representing the association end that is being mapped.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbAssociationEndMapping.PropertyMappings">
<summary>
Gets the collection of <see cref="T:System.Data.Edm.Db.Mapping.DbEdmPropertyMapping"/>s that specifies how the association end key properties are mapped to the table.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbAssociationSetMapping.AssociationSet">
<summary>
Gets an <see cref="T:System.Data.Edm.EdmAssociationSet"/> value representing the association set that is being mapped.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbAssociationSetMapping.Table">
<summary>
Gets a <see cref="T:System.Data.Edm.Db.DbTableMetadata"/> value representing the table to which the entity type's properties are being mapped.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbAssociationSetMapping.ColumnConditions">
<summary>
Gets the collection of <see cref="T:System.Data.Edm.Db.Mapping.DbColumnCondition"/>s that specifies the constant or null values that columns in <see cref="P:System.Data.Edm.Db.Mapping.DbAssociationSetMapping.Table"/> must have for this type mapping to apply.
</summary>
</member>
<member name="T:System.Data.Edm.Db.Mapping.DbColumnCondition">
<summary>
Allows the construction and modification of a condition for a column in a database table.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbColumnCondition.Column">
<summary>
Gets or sets a <see cref="T:System.Data.Edm.Db.DbTableColumnMetadata"/> value representing the table column which must contain <see cref="P:System.Data.Edm.Db.Mapping.DbColumnCondition.Value"/> for this condition to hold.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbColumnCondition.Value">
<summary>
Gets or sets the value that <see cref="P:System.Data.Edm.Db.Mapping.DbColumnCondition.Column"/> must contain for this condition to hold.
</summary>
</member>
<member name="T:System.Data.Edm.Db.Mapping.DbEdmPropertyMapping">
<summary>
Represents the mapping of an entity property to a column in a database table.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEdmPropertyMapping.PropertyPath">
<summary>
Gets or sets the collection of <see cref="T:System.Data.Edm.EdmProperty"/> instances that defines the mapped property, beginning from a property declared by the mapped entity type and optionally proceeding through properties of complex property result types.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEdmPropertyMapping.Column">
<summary>
Gets or sets a <see cref="T:System.Data.Edm.Db.DbTableColumnMetadata"/> value representing the table column to which the entity property is being mapped.
</summary>
</member>
<member name="T:System.Data.Edm.Db.Mapping.DbEntityContainerMapping">
<summary>
Allows the construction and modification of the mapping of an EDM entity container (<see cref="T:System.Data.Edm.EdmEntityContainer"/>) to a database (<see cref="T:System.Data.Edm.Db.DbDatabaseMetadata"/>).
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEntityContainerMapping.EntityContainer">
<summary>
Gets or sets an <see cref="T:System.Data.Edm.EdmEntityContainer"/> value representing the entity container that is being mapped.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEntityContainerMapping.EntitySetMappings">
<summary>
Gets or sets the collection of <see cref="T:System.Data.Edm.Db.Mapping.DbEntitySetMapping"/>s that specifies how the container's entity sets are mapped to the database.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEntityContainerMapping.AssociationSetMappings">
<summary>
Gets the collection of <see cref="T:System.Data.Edm.Db.Mapping.DbAssociationSetMapping"/>s that specifies how the container's association sets are mapped to the database.
</summary>
</member>
<member name="T:System.Data.Edm.Db.Mapping.DbEntitySetMapping">
<summary>
Allows the construction and modification of the mapping of an EDM entity set (<see cref="T:System.Data.Edm.EdmEntitySet"/>) to a database (<see cref="T:System.Data.Edm.Db.DbDatabaseMetadata"/>).
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEntitySetMapping.EntitySet">
<summary>
Gets or sets an <see cref="T:System.Data.Edm.EdmEntitySet"/> value representing the entity set that is being mapped.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEntitySetMapping.EntityTypeMappings">
<summary>
Gets or sets the collection of <see cref="T:System.Data.Edm.Db.Mapping.DbEntityTypeMapping"/>s that specifies how the set's entity types are mapped to the database.
</summary>
</member>
<member name="T:System.Data.Edm.Db.Mapping.DbEntityTypeMapping">
<summary>
Allows the construction and modification of a complete or partial mapping of an EDM entity type (<see cref="T:System.Data.Edm.EdmEntityType"/>) or type hierarchy to a specific database table (<see cref="T:System.Data.Edm.Db.DbTableMetadata"/>).
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEntityTypeMapping.EntityType">
<summary>
Gets or sets an <see cref="T:System.Data.Edm.EdmEntityType"/> value representing the entity type or hierarchy that is being mapped.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEntityTypeMapping.IsHierarchyMapping">
<summary>
Gets or sets a value indicating whether this type mapping applies to <see cref="P:System.Data.Edm.Db.Mapping.DbEntityTypeMapping.EntityType"/> and all its direct or indirect subtypes (<code>true</code>), or only to <see cref="P:System.Data.Edm.Db.Mapping.DbEntityTypeMapping.EntityType"/> (<code>false</code>).
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEntityTypeMappingFragment.Table">
<summary>
Gets a <see cref="T:System.Data.Edm.Db.DbTableMetadata"/> value representing the table to which the entity type's properties are being mapped.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEntityTypeMappingFragment.PropertyMappings">
<summary>
Gets the collection of <see cref="T:System.Data.Edm.Db.Mapping.DbEdmPropertyMapping"/>s that specifies how the type's properties are mapped to the table.
</summary>
</member>
<member name="P:System.Data.Edm.Db.Mapping.DbEntityTypeMappingFragment.ColumnConditions">
<summary>
Gets the collection of <see cref="T:System.Data.Edm.Db.Mapping.DbColumnCondition"/>s that specifies the constant or null values that columns in <see cref="P:System.Data.Edm.Db.Mapping.DbEntityTypeMappingFragment.Table"/> must have for this type mapping fragment to apply.
</summary>
</member>
<member name="T:System.Data.Edm.Db.Mapping.DbMappingItemKind">
<summary>
Indicates which EDM-to-Database Mapping concept is represented by a given item.
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.DatabaseMapping">
<summary>
Database Mapping Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.EntityContainerMapping">
<summary>
Entity Container Mapping Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.EntitySetMapping">
<summary>
Entity Set Mapping Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.AssociationSetMapping">
<summary>
Association Set Mapping Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.EntityTypeMapping">
<summary>
Entity Type Mapping Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.QueryViewMapping">
<summary>
Query View Mapping Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.EntityTypeMappingFragment">
<summary>
Entity Type Mapping Fragment Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.EdmPropertyMapping">
<summary>
Edm Property Mapping Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.AssociationEndMapping">
<summary>
Association End Mapping Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.ColumnCondition">
<summary>
Column Condition Kind
</summary>
</member>
<member name="F:System.Data.Edm.Db.Mapping.DbMappingItemKind.PropertyCondition">
<summary>
Property Condition Kind
</summary>
</member>
<member name="T:System.Data.Edm.EdmAssociationConstraint">
<summary>
Allows the construction and modification of a constraint applied to an Entity Data Model (EDM) association.
</summary>
</member>
<member name="T:System.Data.Edm.EdmMetadataItem">
<summary>
The base for all all Entity Data Model (EDM) types that support annotation using <see cref="T:System.Data.Edm.Common.DataModelAnnotation"/>.
</summary>
</member>
<member name="T:System.Data.Edm.EdmDataModelItem">
<summary>
EdmDataModelItem is the base for all types in the Entity Data Model (EDM) metadata construction and modification API.
</summary>
</member>
<member name="P:System.Data.Edm.EdmDataModelItem.ItemKind">
<summary>
Gets an <see cref="T:System.Data.Edm.EdmItemKind"/> value indicating which Entity Data Model (EDM) concept is represented by this item.
</summary>
</member>
<member name="P:System.Data.Edm.EdmMetadataItem.Annotations">
<summary>
Gets or sets the currently assigned annotations.
</summary>
</member>
<member name="P:System.Data.Edm.EdmMetadataItem.ChildItems">
<summary>
Returns all EdmItem children directly contained by this EdmItem.
</summary>
</member>
<member name="P:System.Data.Edm.EdmAssociationConstraint.DependentEnd">
<summary>
Gets or sets the <see cref="T:System.Data.Edm.EdmAssociationEnd"/> that represents the 'dependent' end of the constraint; properties from this association end's entity type contribute to the <see cref="P:System.Data.Edm.EdmAssociationConstraint.DependentProperties"/> collection.
</summary>
</member>
<member name="P:System.Data.Edm.EdmAssociationConstraint.DependentProperties">
<summary>
Gets or sets the collection of <see cref="T:System.Data.Edm.EdmProperty"/> instances from the <see cref="P:System.Data.Edm.EdmAssociationConstraint.DependentEnd"/> of the constraint. The values of these properties are constrained against the primary key values of the remaining, 'principal' association end's entity type.
</summary>
</member>
<member name="T:System.Data.Edm.EdmAssociationEnd">
<summary>
Allows the construction and modification of one end of an Entity Data Model (EDM) association.
</summary>
</member>
<member name="T:System.Data.Edm.EdmStructuralMember">
<summary>
EdmStructuralMember is the base for all types that represent members of structural items in the Entity Data Model (EDM) metadata construction and modification API.
</summary>
</member>
<member name="T:System.Data.Edm.EdmNamedMetadataItem">
<summary>
The base for all all Entity Data Model (EDM) item types that with a <see cref="P:System.Data.Edm.EdmNamedMetadataItem.Name"/> property.
</summary>
</member>
<member name="P:System.Data.Edm.EdmNamedMetadataItem.Name">
<summary>
Gets or sets the currently assigned name.
</summary>
</member>
<member name="P:System.Data.Edm.EdmAssociationEnd.EntityType">
<summary>
Gets or sets the entity type referenced by this association end.
</summary>
</member>
<member name="P:System.Data.Edm.EdmAssociationEnd.EndKind">
<summary>
Gets or sets the <see cref="T:System.Data.Edm.EdmAssociationEndKind"/> of this association end, which indicates the multiplicity of the end and whether or not it is required.
</summary>
</member>
<member name="P:System.Data.Edm.EdmAssociationEnd.DeleteAction">
<summary>
Gets or sets the <see cref="T:System.Data.Edm.EdmOperationAction"/> to take when a delete operation is attempted.
</summary>
</member>
<member name="T:System.Data.Edm.EdmAssociationEndKind">
<summary>
Indicates the multiplicity of an <see cref="T:System.Data.Edm.EdmAssociationEnd"/> and whether or not it is required.
</summary>
</member>
<member name="T:System.Data.Edm.EdmAssociationSet">
<summary>
Allows the construction and modification of an association set in an Entity Data Model (EDM) <see cref="T:System.Data.Edm.EdmEntityContainer"/>).
</summary>
</member>
<member name="T:System.Data.Edm.EdmEntityContainerItem">
<summary>
Represents an item in an Entity Data Model (EDM) <see cref="T:System.Data.Edm.EdmEntityContainer"/>.
</summary>
</member>
<member name="P:System.Data.Edm.EdmAssociationSet.ElementType">
<summary>
Gets or sets the <see cref="T:System.Data.Edm.EdmAssociationType"/> that specifies the association type for the set.
</summary>
</member>
<member name="P:System.Data.Edm.EdmAssociationSet.SourceSet">
<summary>
Gets or sets the <see cref="T:System.Data.Edm.EdmEntitySet"/> that specifies the entity set corresponding to the <see cref="P:System.Data.Edm.EdmAssociationType.SourceEnd"/> association end for this association set.
</summary>
</member>
<member name="P:System.Data.Edm.EdmAssociationSet.TargetSet">
<summary>
Gets or sets the <see cref="T:System.Data.Edm.EdmEntitySet"/> that specifies the entity set corresponding to the <see cref="P:System.Data.Edm.EdmAssociationType.TargetEnd"/> association end for this association set.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "T:System.Data.Edm.EdmAssociationType" -->
<member name="T:System.Data.Edm.EdmStructuralType">
<summary>
The base for all all Entity Data Model (EDM) types that represent a structured type from the EDM type system.
</summary>
</member>
<member name="T:System.Data.Edm.EdmDataModelType">
<summary>
The base for all all Entity Data Model (EDM) types that represent a type from the EDM type system.
</summary>
</member>
<member name="T:System.Data.Edm.EdmNamespaceItem">
<summary>
Represents an item in an Entity Data Model (EDM) <see cref="T:System.Data.Edm.EdmNamespace"/>.
</summary>
</member>
<member name="T:System.Data.Edm.EdmQualifiedNameMetadataItem">
<summary>
The base for all all Entity Data Model (EDM) item types that with a Name property
that represents a qualified (can be dotted) name.
</summary>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.