ruby_odata 0.0.10 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +9 -3
- data/.travis.yml +4 -0
- data/CHANGELOG.rdoc +18 -1
- data/README.rdoc +77 -19
- data/config/cucumber.yml +4 -3
- data/features/basic_auth.feature +5 -7
- data/features/batch_request.feature +11 -11
- data/features/complex_types.feature +11 -11
- data/features/query_builder.feature +27 -18
- data/features/service.feature +8 -8
- data/features/service_manage.feature +27 -12
- data/features/service_methods.feature +37 -0
- data/features/ssl.feature +4 -4
- data/features/step_definitions/pickle_steps.rb +100 -0
- data/features/step_definitions/service_steps.rb +99 -65
- data/features/support/constants.rb +3 -0
- data/features/support/custom_helpers.rb +54 -0
- data/features/support/env.rb +0 -10
- data/features/support/hooks.rb +1 -1
- data/features/support/pickle.rb +82 -0
- data/features/type_conversion.feature +10 -10
- data/lib/ruby_odata.rb +4 -1
- data/lib/ruby_odata/association.rb +36 -0
- data/lib/ruby_odata/class_builder.rb +96 -16
- data/lib/ruby_odata/helpers.rb +10 -0
- data/lib/ruby_odata/operation.rb +7 -5
- data/lib/ruby_odata/property_metadata.rb +11 -6
- data/lib/ruby_odata/query_builder.rb +20 -1
- data/lib/ruby_odata/service.rb +407 -94
- data/lib/ruby_odata/version.rb +1 -1
- data/ruby_odata.gemspec +2 -0
- data/spec/association_spec.rb +48 -0
- data/spec/class_builder_spec.rb +11 -2
- data/spec/fixtures/inheritance/edmx_pluralsight.xml +111 -0
- data/spec/fixtures/inheritance/result_pluralsight_courses.xml +229 -0
- data/spec/fixtures/links/result_links_query.xml +6 -0
- data/spec/fixtures/partial/partial_feed_metadata.xml +25 -0
- data/spec/fixtures/partial/partial_feed_part_1.xml +42 -0
- data/spec/fixtures/partial/partial_feed_part_2.xml +42 -0
- data/spec/fixtures/partial/partial_feed_part_3.xml +40 -0
- data/spec/fixtures/sample_service/edmx_categories_products.xml +1 -0
- data/spec/fixtures/sample_service/result_category_names.xml +5 -0
- data/spec/fixtures/sample_service/result_entity_category_web_get.xml +29 -0
- data/spec/fixtures/sample_service/result_entity_single_category_web_get.xml +23 -0
- data/spec/fixtures/sample_service/result_first_category_id.xml +2 -0
- data/spec/fixtures/sample_service/result_multiple_category_products.xml +57 -0
- data/spec/fixtures/sample_service/result_single_category.xml +18 -0
- data/spec/fixtures/sample_service/result_single_product.xml +26 -0
- data/spec/fixtures/sample_service/result_single_product_not_found.xml +4 -0
- data/spec/fixtures/sap/edmx_sap_demo_flight.xml +62 -58
- data/spec/property_metadata_spec.rb +9 -2
- data/spec/query_builder_spec.rb +11 -0
- data/spec/revised_service_spec.rb +197 -0
- data/spec/service_spec.rb +463 -4
- data/test/RubyODataService/RubyODataService.sln +20 -0
- data/test/RubyODataService/RubyODataService/App_Start/EntityFramework.SqlServerCompact.cs +12 -0
- data/test/RubyODataService/RubyODataService/BasicAuth/RubyOData.svc +3 -0
- data/test/RubyODataService/RubyODataService/BasicAuth/RubyOData.svc.cs +107 -0
- data/test/RubyODataService/RubyODataService/Global.asax +1 -0
- data/test/RubyODataService/RubyODataService/Global.asax.cs +49 -0
- data/test/RubyODataService/RubyODataService/Models/AuditFields.cs +16 -0
- data/test/RubyODataService/RubyODataService/Models/Category.cs +16 -0
- data/test/RubyODataService/RubyODataService/Models/Product.cs +20 -0
- data/test/RubyODataService/RubyODataService/Properties/AssemblyInfo.cs +35 -0
- data/test/RubyODataService/RubyODataService/RubyOData.svc +3 -0
- data/test/RubyODataService/RubyODataService/RubyOData.svc.cs +57 -0
- data/test/RubyODataService/RubyODataService/RubyODataContext.cs +16 -0
- data/test/RubyODataService/RubyODataService/RubyODataService.csproj +159 -0
- data/test/RubyODataService/RubyODataService/RubyODataService.csproj.user +31 -0
- data/test/RubyODataService/RubyODataService/Web.Debug.config +30 -0
- data/test/RubyODataService/RubyODataService/Web.Release.config +31 -0
- data/test/RubyODataService/RubyODataService/Web.config +27 -0
- data/test/RubyODataService/RubyODataService/bin/EntityFramework.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Edm.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.OData.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Services.Client.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Services.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Spatial.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/RubyODataService.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/System.Data.SqlServerCe.Entity.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/System.Data.SqlServerCe.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/System.Spatial.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/WebActivator.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/README_ENU.txt +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/msvcr90.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/sqlcecompact40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/sqlceer40EN.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/sqlceme40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/sqlceqp40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/amd64/sqlcese40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
- data/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/README_ENU.txt +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/msvcr90.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/sqlcecompact40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/sqlceer40EN.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/sqlceme40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/sqlceqp40.dll +0 -0
- data/test/RubyODataService/RubyODataService/bin/x86/sqlcese40.dll +0 -0
- data/test/RubyODataService/RubyODataService/packages.config +7 -0
- data/test/RubyODataService/packages/EntityFramework.4.2.0.0/EntityFramework.4.2.0.0.nupkg +0 -0
- data/test/RubyODataService/packages/EntityFramework.4.2.0.0/lib/net40/EntityFramework.dll +0 -0
- data/test/RubyODataService/packages/EntityFramework.4.2.0.0/lib/net40/EntityFramework.xml +13488 -0
- data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/Content/App_Start/EntityFramework.SqlServerCompact.cs.pp +12 -0
- data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/EULA_ENU.rtf +969 -0
- data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/EntityFramework.SqlServerCompact.4.1.8482.2.nupkg +0 -0
- data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/lib/System.Data.SqlServerCe.Entity.dll +0 -0
- data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/tools/install.ps1 +3 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Content/web.config.transform +8 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/README_ENU.txt +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/msvcr90.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlcecompact40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceer40EN.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceme40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceqp40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlcese40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/README_ENU.txt +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/msvcr90.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlcecompact40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceer40EN.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceme40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceqp40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlcese40.dll +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/SQLCE_EULA_ENU.rtf +778 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/SqlServerCompact.4.0.8482.1.nupkg +0 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/GetSqlCEPostBuildCmd.ps1 +12 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/install.ps1 +11 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/uninstall.ps1 +9 -0
- data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/lib/System.Data.SqlServerCe.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/DataSvcUtil.exe +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/License.rtf +708 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Edm.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Edm.xml +4150 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.xml +1969 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Client.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Client.xml +1442 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Design.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Design.xml +191 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.xml +2559 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.xml +15 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.VsDesigner.DataServices.Adapter.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/README.txt +6 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/System.Spatial.dll +0 -0
- data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/System.Spatial.xml +2276 -0
- data/test/RubyODataService/packages/WebActivator.1.0.0.0/WebActivator.1.0.0.0.nupkg +0 -0
- data/test/RubyODataService/packages/WebActivator.1.0.0.0/lib/WebActivator.dll +0 -0
- data/test/RubyODataService/packages/repositories.config +4 -0
- data/test/applicationhost.config.template +2 -2
- data/test/blueprints.rb +5 -4
- data/test/iisExpress x64.bat b/data/test/iisExpress → x64.bat +0 -0
- data/test/iisExpress x86.bat b/data/test/iisExpress → x86.bat +0 -0
- data/test/setpath.rb +13 -3
- data/test/usage_samples/querying.rb +45 -0
- data/test/usage_samples/reflection.rb +16 -0
- data/test/usage_samples/sample_data.rb +30 -0
- metadata +327 -36
- data/test/Cassini x64.bat +0 -1
- data/test/Cassini x86.bat +0 -1
- data/test/SampleService/App_Code/AuditFields.cs +0 -13
- data/test/SampleService/App_Code/Entities.cs +0 -145
- data/test/SampleService/App_Code/Model.Designer.cs +0 -578
- data/test/SampleService/App_Code/Model.edmx +0 -157
- data/test/SampleService/App_Code/ModelContainerExtended.cs +0 -32
- data/test/SampleService/App_Data/_TestDB.mdf +0 -0
- data/test/SampleService/App_Data/_TestDB_Log.ldf +0 -0
- data/test/SampleService/BasicAuth/Entities.svc +0 -1
- data/test/SampleService/Entities.svc +0 -1
- data/test/SampleService/web.config +0 -37
Binary file
|
@@ -0,0 +1,4150 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<doc>
|
3
|
+
<assembly>
|
4
|
+
<name>Microsoft.Data.Edm</name>
|
5
|
+
</assembly>
|
6
|
+
<members>
|
7
|
+
<member name="T:Microsoft.Data.Edm.EdmAssociationMultiplicity">
|
8
|
+
<summary>Enumerates the multiplicities of EDM associations.</summary>
|
9
|
+
</member>
|
10
|
+
<member name="F:Microsoft.Data.Edm.EdmAssociationMultiplicity.Unknown">
|
11
|
+
<summary>The multiplicity of the association end is unknown.</summary>
|
12
|
+
</member>
|
13
|
+
<member name="F:Microsoft.Data.Edm.EdmAssociationMultiplicity.ZeroOrOne">
|
14
|
+
<summary>The multiplicity of the association end is zero or one.</summary>
|
15
|
+
</member>
|
16
|
+
<member name="F:Microsoft.Data.Edm.EdmAssociationMultiplicity.One">
|
17
|
+
<summary>The multiplicity of the association end is one.</summary>
|
18
|
+
</member>
|
19
|
+
<member name="F:Microsoft.Data.Edm.EdmAssociationMultiplicity.Many">
|
20
|
+
<summary>The multiplicity of the association end is many.</summary>
|
21
|
+
</member>
|
22
|
+
<member name="T:Microsoft.Data.Edm.EdmConcurrencyMode">
|
23
|
+
<summary>Enumerates the EDM property concurrency modes.</summary>
|
24
|
+
</member>
|
25
|
+
<member name="F:Microsoft.Data.Edm.EdmConcurrencyMode.None">
|
26
|
+
<summary>Denotes a property that should be used for optimistic concurrency checks.</summary>
|
27
|
+
</member>
|
28
|
+
<member name="F:Microsoft.Data.Edm.EdmConcurrencyMode.Fixed">
|
29
|
+
<summary>Denotes a property that should not be used for optimistic concurrency checks.</summary>
|
30
|
+
</member>
|
31
|
+
<member name="T:Microsoft.Data.Edm.EdmContainerElementKind">
|
32
|
+
<summary>Defines EDM container element types.</summary>
|
33
|
+
</member>
|
34
|
+
<member name="F:Microsoft.Data.Edm.EdmContainerElementKind.None">
|
35
|
+
<summary>Represents an element where the container kind is unknown or in error.</summary>
|
36
|
+
</member>
|
37
|
+
<member name="F:Microsoft.Data.Edm.EdmContainerElementKind.EntitySet">
|
38
|
+
<summary>Represents an element implementing <see cref="T:Microsoft.Data.Edm.IEdmEntitySet" />.</summary>
|
39
|
+
</member>
|
40
|
+
<member name="F:Microsoft.Data.Edm.EdmContainerElementKind.AssociationSet">
|
41
|
+
<summary>Represents an element implementing <see cref="T:Microsoft.Data.Edm.IEdmAssociationSet" />.</summary>
|
42
|
+
</member>
|
43
|
+
<member name="F:Microsoft.Data.Edm.EdmContainerElementKind.FunctionImport">
|
44
|
+
<summary>Represents an element implementing <see cref="T:Microsoft.Data.Edm.IEdmFunctionImport" />.</summary>
|
45
|
+
</member>
|
46
|
+
<member name="T:Microsoft.Data.Edm.EdmFunctionParameterMode">
|
47
|
+
<summary>Enumerates the modes of parameters of EDM functions.</summary>
|
48
|
+
</member>
|
49
|
+
<member name="F:Microsoft.Data.Edm.EdmFunctionParameterMode.In">
|
50
|
+
<summary>Denotes that a parameter is used for input.</summary>
|
51
|
+
</member>
|
52
|
+
<member name="F:Microsoft.Data.Edm.EdmFunctionParameterMode.Out">
|
53
|
+
<summary>Denotes that a parameter is used for output.</summary>
|
54
|
+
</member>
|
55
|
+
<member name="F:Microsoft.Data.Edm.EdmFunctionParameterMode.InOut">
|
56
|
+
<summary>Denotes that a parameter is used for input and output.</summary>
|
57
|
+
</member>
|
58
|
+
<member name="F:Microsoft.Data.Edm.EdmFunctionParameterMode.None">
|
59
|
+
<summary>Denotes that a parameter with an unknown or error directionality.</summary>
|
60
|
+
</member>
|
61
|
+
<member name="T:Microsoft.Data.Edm.EdmLocation">
|
62
|
+
<summary>Represents the location of an EDM item.</summary>
|
63
|
+
</member>
|
64
|
+
<member name="M:Microsoft.Data.Edm.EdmLocation.#ctor">
|
65
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.EdmLocation" /> class.</summary>
|
66
|
+
</member>
|
67
|
+
<member name="M:Microsoft.Data.Edm.EdmLocation.ToString">
|
68
|
+
<summary>Gets a string representation of the location.</summary>
|
69
|
+
<returns>A string representation of the location.</returns>
|
70
|
+
</member>
|
71
|
+
<member name="T:Microsoft.Data.Edm.EdmOnDeleteAction">
|
72
|
+
<summary>Enumerates the actions EDM can apply on deletes.</summary>
|
73
|
+
</member>
|
74
|
+
<member name="F:Microsoft.Data.Edm.EdmOnDeleteAction.None">
|
75
|
+
<summary>Takes no action on delete.</summary>
|
76
|
+
</member>
|
77
|
+
<member name="F:Microsoft.Data.Edm.EdmOnDeleteAction.Cascade">
|
78
|
+
<summary>On delete also delete items on the other end of the association.</summary>
|
79
|
+
</member>
|
80
|
+
<member name="T:Microsoft.Data.Edm.EdmPrimitiveTypeKind">
|
81
|
+
<summary>Enumerates the kinds of EDM primitives.</summary>
|
82
|
+
</member>
|
83
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.None">
|
84
|
+
<summary>Represents a primitive type of unknown kind.</summary>
|
85
|
+
</member>
|
86
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Binary">
|
87
|
+
<summary>Represents a Binary type.</summary>
|
88
|
+
</member>
|
89
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Boolean">
|
90
|
+
<summary>Represents a Boolean type.</summary>
|
91
|
+
</member>
|
92
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Byte">
|
93
|
+
<summary>Represents a Byte type.</summary>
|
94
|
+
</member>
|
95
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.DateTime">
|
96
|
+
<summary>Represents a DateTime type.</summary>
|
97
|
+
</member>
|
98
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.DateTimeOffset">
|
99
|
+
<summary>Represents a DateTimeOffset type.</summary>
|
100
|
+
</member>
|
101
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Decimal">
|
102
|
+
<summary>Represents a Decimal type.</summary>
|
103
|
+
</member>
|
104
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Double">
|
105
|
+
<summary>Represents a Double type.</summary>
|
106
|
+
</member>
|
107
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Guid">
|
108
|
+
<summary>Represents a Guid type.</summary>
|
109
|
+
</member>
|
110
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Int16">
|
111
|
+
<summary>Represents an Int16 type.</summary>
|
112
|
+
</member>
|
113
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Int32">
|
114
|
+
<summary>Represents an Int32 type.</summary>
|
115
|
+
</member>
|
116
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Int64">
|
117
|
+
<summary>Represents an Int64 type.</summary>
|
118
|
+
</member>
|
119
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.SByte">
|
120
|
+
<summary>Represents a SByte type.</summary>
|
121
|
+
</member>
|
122
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Single">
|
123
|
+
<summary>Represents a Single type.</summary>
|
124
|
+
</member>
|
125
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.String">
|
126
|
+
<summary>Represents a String type.</summary>
|
127
|
+
</member>
|
128
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Stream">
|
129
|
+
<summary>Represents a Stream type.</summary>
|
130
|
+
</member>
|
131
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Time">
|
132
|
+
<summary>Represents a Time type.</summary>
|
133
|
+
</member>
|
134
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Geography">
|
135
|
+
<summary>Represents an arbitrary Geography type.</summary>
|
136
|
+
</member>
|
137
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Point">
|
138
|
+
<summary>Represents a geography Point type.</summary>
|
139
|
+
</member>
|
140
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.LineString">
|
141
|
+
<summary>Represents a geography LineString type.</summary>
|
142
|
+
</member>
|
143
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Polygon">
|
144
|
+
<summary>Represents a geography Polygon type.</summary>
|
145
|
+
</member>
|
146
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.GeographyCollection">
|
147
|
+
<summary>Represents a geography GeographyCollection type.</summary>
|
148
|
+
</member>
|
149
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.MultiPolygon">
|
150
|
+
<summary>Represents a geography MultiPolygon type.</summary>
|
151
|
+
</member>
|
152
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.MultiLineString">
|
153
|
+
<summary>Represents a geography MultiLineString type.</summary>
|
154
|
+
</member>
|
155
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.MultiPoint">
|
156
|
+
<summary>Represents a geography MultiPoint type.</summary>
|
157
|
+
</member>
|
158
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.Geometry">
|
159
|
+
<summary>Represents an arbitrary Geometry type.</summary>
|
160
|
+
</member>
|
161
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.GeometricPoint">
|
162
|
+
<summary>Represents a geometry Point type.</summary>
|
163
|
+
</member>
|
164
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.GeometricLineString">
|
165
|
+
<summary>Represents a geometry LineString type.</summary>
|
166
|
+
</member>
|
167
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.GeometricPolygon">
|
168
|
+
<summary>Represents a geometry Polygon type.</summary>
|
169
|
+
</member>
|
170
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.GeometryCollection">
|
171
|
+
<summary>Represents a geometry GeometryCollection type.</summary>
|
172
|
+
</member>
|
173
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.GeometricMultiPolygon">
|
174
|
+
<summary>Represents a geometry MultiPolygon type.</summary>
|
175
|
+
</member>
|
176
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.GeometricMultiLineString">
|
177
|
+
<summary>Represents a geometry MultiLineString type.</summary>
|
178
|
+
</member>
|
179
|
+
<member name="F:Microsoft.Data.Edm.EdmPrimitiveTypeKind.GeometricMultiPoint">
|
180
|
+
<summary>Represents a geometry MultiPoint type.</summary>
|
181
|
+
</member>
|
182
|
+
<member name="T:Microsoft.Data.Edm.EdmPropertyKind">
|
183
|
+
<summary>Defines EDM property types.</summary>
|
184
|
+
</member>
|
185
|
+
<member name="F:Microsoft.Data.Edm.EdmPropertyKind.Structural">
|
186
|
+
<summary>Represents a property implementing <see cref="T:Microsoft.Data.Edm.IEdmStructuralProperty" />.</summary>
|
187
|
+
</member>
|
188
|
+
<member name="F:Microsoft.Data.Edm.EdmPropertyKind.Navigation">
|
189
|
+
<summary>Represents a property implementing <see cref="T:Microsoft.Data.Edm.IEdmNavigationProperty" />.</summary>
|
190
|
+
</member>
|
191
|
+
<member name="F:Microsoft.Data.Edm.EdmPropertyKind.None">
|
192
|
+
<summary>Represents a property with an unknown or error kind.</summary>
|
193
|
+
</member>
|
194
|
+
<member name="T:Microsoft.Data.Edm.EdmSchemaElementKind">
|
195
|
+
<summary>Defines EDM schema element types.</summary>
|
196
|
+
</member>
|
197
|
+
<member name="F:Microsoft.Data.Edm.EdmSchemaElementKind.None">
|
198
|
+
<summary>Represents a schema element with unknown or error kind.</summary>
|
199
|
+
</member>
|
200
|
+
<member name="F:Microsoft.Data.Edm.EdmSchemaElementKind.TypeDefinition">
|
201
|
+
<summary>Represents a schema element implementing <see cref="T:Microsoft.Data.Edm.IEdmSchemaType" />.</summary>
|
202
|
+
</member>
|
203
|
+
<member name="F:Microsoft.Data.Edm.EdmSchemaElementKind.Association">
|
204
|
+
<summary>Represents a schema element implementing <see cref="T:Microsoft.Data.Edm.IEdmAssociation" />.</summary>
|
205
|
+
</member>
|
206
|
+
<member name="F:Microsoft.Data.Edm.EdmSchemaElementKind.Function">
|
207
|
+
<summary>Represents a schema element implementing <see cref="T:Microsoft.Data.Edm.IEdmFunction" />.</summary>
|
208
|
+
</member>
|
209
|
+
<member name="F:Microsoft.Data.Edm.EdmSchemaElementKind.ValueTerm">
|
210
|
+
<summary>Represents a schema element implementing <see cref="T:Microsoft.Data.Edm.IEdmValueTerm" />.</summary>
|
211
|
+
</member>
|
212
|
+
<member name="T:Microsoft.Data.Edm.EdmTermKind">
|
213
|
+
<summary>Defines EDM term kinds.</summary>
|
214
|
+
</member>
|
215
|
+
<member name="F:Microsoft.Data.Edm.EdmTermKind.None">
|
216
|
+
<summary>Represents a term with unknown or error kind.</summary>
|
217
|
+
</member>
|
218
|
+
<member name="F:Microsoft.Data.Edm.EdmTermKind.Type">
|
219
|
+
<summary>Represents a term implementing <see cref="T:Microsoft.Data.Edm.IEdmEntityType" />.</summary>
|
220
|
+
</member>
|
221
|
+
<member name="F:Microsoft.Data.Edm.EdmTermKind.Value">
|
222
|
+
<summary>Represents a term implementing <see cref="T:Microsoft.Data.Edm.IEdmValueTerm" />.</summary>
|
223
|
+
</member>
|
224
|
+
<member name="T:Microsoft.Data.Edm.EdmTypeKind">
|
225
|
+
<summary>Defines EDM metatypes.</summary>
|
226
|
+
</member>
|
227
|
+
<member name="F:Microsoft.Data.Edm.EdmTypeKind.None">
|
228
|
+
<summary>Represents a type with an unknown or error kind.</summary>
|
229
|
+
</member>
|
230
|
+
<member name="F:Microsoft.Data.Edm.EdmTypeKind.Primitive">
|
231
|
+
<summary>Represents a type implementing <see cref="T:Microsoft.Data.Edm.IEdmPrimitiveType" />.</summary>
|
232
|
+
</member>
|
233
|
+
<member name="F:Microsoft.Data.Edm.EdmTypeKind.Entity">
|
234
|
+
<summary>Represents a type implementing <see cref="T:Microsoft.Data.Edm.IEdmEntityType" />.</summary>
|
235
|
+
</member>
|
236
|
+
<member name="F:Microsoft.Data.Edm.EdmTypeKind.Complex">
|
237
|
+
<summary>Represents a type implementing <see cref="T:Microsoft.Data.Edm.IEdmComplexType" />.</summary>
|
238
|
+
</member>
|
239
|
+
<member name="F:Microsoft.Data.Edm.EdmTypeKind.Row">
|
240
|
+
<summary>Represents a type implementing <see cref="T:Microsoft.Data.Edm.IEdmRowType" />.</summary>
|
241
|
+
</member>
|
242
|
+
<member name="F:Microsoft.Data.Edm.EdmTypeKind.Collection">
|
243
|
+
<summary>Represents a type implementing <see cref="T:Microsoft.Data.Edm.IEdmCollectionType" />.</summary>
|
244
|
+
</member>
|
245
|
+
<member name="F:Microsoft.Data.Edm.EdmTypeKind.EntityReference">
|
246
|
+
<summary>Represents a type implementing <see cref="T:Microsoft.Data.Edm.IEdmEntityReferenceType" />.</summary>
|
247
|
+
</member>
|
248
|
+
<member name="F:Microsoft.Data.Edm.EdmTypeKind.Enum">
|
249
|
+
<summary>Represents a type implementing <see cref="T:Microsoft.Data.Edm.IEdmEnumType" />.</summary>
|
250
|
+
</member>
|
251
|
+
<member name="T:Microsoft.Data.Edm.ExtensionMethods">
|
252
|
+
<summary>Contains extension methods for <see cref="T:Microsoft.Data.Edm.IEdmModel" /> interfaces.</summary>
|
253
|
+
</member>
|
254
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Association(Microsoft.Data.Edm.IEdmNavigationProperty)">
|
255
|
+
<summary>Gets the association type that describes this navigation property.</summary>
|
256
|
+
<returns>The association type that describes this navigation property.</returns>
|
257
|
+
<param name="property">Reference to the calling object.</param>
|
258
|
+
</member>
|
259
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.AssociationSets(Microsoft.Data.Edm.IEdmEntityContainer)">
|
260
|
+
<summary>Returns association sets belonging to an <see cref="T:Microsoft.Data.Edm.IEdmEntityContainer" />.</summary>
|
261
|
+
<returns>Association sets belonging to an IEdmEntityContainer.</returns>
|
262
|
+
<param name="container">Reference to the calling object.</param>
|
263
|
+
</member>
|
264
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.BaseComplexType(Microsoft.Data.Edm.IEdmComplexType)">
|
265
|
+
<summary>Gets the base type of this references definition.</summary>
|
266
|
+
<returns>The base type of this references definition.</returns>
|
267
|
+
<param name="type">Reference to the calling object.</param>
|
268
|
+
</member>
|
269
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.BaseComplexType(Microsoft.Data.Edm.IEdmComplexTypeReference)">
|
270
|
+
<summary>Gets the base type of this reference.</summary>
|
271
|
+
<returns>The base type of this reference.</returns>
|
272
|
+
<param name="type">Reference to the calling object.</param>
|
273
|
+
</member>
|
274
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.BaseEntityType(Microsoft.Data.Edm.IEdmEntityType)">
|
275
|
+
<summary>Gets the base type of this entity type definition.</summary>
|
276
|
+
<returns>The base type of this entity type definition.</returns>
|
277
|
+
<param name="type">Reference to the calling object.</param>
|
278
|
+
</member>
|
279
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.BaseEntityType(Microsoft.Data.Edm.IEdmEntityTypeReference)">
|
280
|
+
<summary>Gets the base type of the definition of this reference.</summary>
|
281
|
+
<returns>The base type of the definition of this reference.</returns>
|
282
|
+
<param name="type">Reference to the calling object.</param>
|
283
|
+
</member>
|
284
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.BaseType(Microsoft.Data.Edm.IEdmStructuredTypeReference)">
|
285
|
+
<summary>Returns the base type of the definition of this reference.</summary>
|
286
|
+
<returns>The base type of the definition of this reference. </returns>
|
287
|
+
<param name="type">Reference to the calling object.</param>
|
288
|
+
</member>
|
289
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.CollectionDefinition(Microsoft.Data.Edm.IEdmCollectionTypeReference)">
|
290
|
+
<summary>Gets the definition of this multivalued reference.</summary>
|
291
|
+
<returns>The definition of this multivalue reference.</returns>
|
292
|
+
<param name="type">Reference to the calling object.</param>
|
293
|
+
</member>
|
294
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.ComplexDefinition(Microsoft.Data.Edm.IEdmComplexTypeReference)">
|
295
|
+
<summary>Gets the definition of this reference typed as an IEdmComplexTypeDefinition.</summary>
|
296
|
+
<returns>The definition of this reference typed as an IEdmComplexTypeDefinition.</returns>
|
297
|
+
<param name="type">Reference to the calling object.</param>
|
298
|
+
</member>
|
299
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.DeclaredNavigationProperties(Microsoft.Data.Edm.IEdmEntityType)">
|
300
|
+
<summary>Gets the navigation properties declared in this entity definition.</summary>
|
301
|
+
<returns>The navigation properties declared in this entity definition.</returns>
|
302
|
+
<param name="type">Reference to the calling object.</param>
|
303
|
+
</member>
|
304
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.DeclaredNavigationProperties(Microsoft.Data.Edm.IEdmEntityTypeReference)">
|
305
|
+
<summary>Gets the navigation properties declared in the definition of this reference.</summary>
|
306
|
+
<returns>The navigation properties declared in the definition of this reference.</returns>
|
307
|
+
<param name="type">Reference to the calling object.</param>
|
308
|
+
</member>
|
309
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.DeclaredStructuralProperties(Microsoft.Data.Edm.IEdmStructuredType)">
|
310
|
+
<summary>Gets all structural properties declared in the IEdmStructuredTypeDefinition.</summary>
|
311
|
+
<returns>All structural properties declared in the IEdmStructuredTypeDefinition.</returns>
|
312
|
+
<param name="type">Reference to the calling object.</param>
|
313
|
+
</member>
|
314
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.DeclaredStructuralProperties(Microsoft.Data.Edm.IEdmStructuredTypeReference)">
|
315
|
+
<summary>Gets all structural properties declared in the definition of this reference.</summary>
|
316
|
+
<returns>All structural properties declared in the definition of this reference.</returns>
|
317
|
+
<param name="type">Reference to the calling object.</param>
|
318
|
+
</member>
|
319
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.DependentEnd(Microsoft.Data.Edm.IEdmReferentialConstraint)">
|
320
|
+
<summary>Gets the dependent end of this referential constraint.</summary>
|
321
|
+
<returns>The dependent end of this referential constraint.</returns>
|
322
|
+
<param name="constraint">Reference to the calling object.</param>
|
323
|
+
</member>
|
324
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.ElementType(Microsoft.Data.Edm.IEdmCollectionTypeReference)">
|
325
|
+
<summary>Gets the element type of the definition of this collection reference.</summary>
|
326
|
+
<returns>The element type of the definition of this collection reference.</returns>
|
327
|
+
<param name="type">Reference to the calling object.</param>
|
328
|
+
</member>
|
329
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.EntityDefinition(Microsoft.Data.Edm.IEdmEntityTypeReference)">
|
330
|
+
<summary>Gets the definition of this entity reference.</summary>
|
331
|
+
<returns>The definition of this entity reference.</returns>
|
332
|
+
<param name="type">Reference to the calling object.</param>
|
333
|
+
</member>
|
334
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.EntityReferenceDefinition(Microsoft.Data.Edm.IEdmEntityReferenceTypeReference)">
|
335
|
+
<summary>Gets the definition of this entity reference type reference.</summary>
|
336
|
+
<returns>The definition of this entity reference type reference.</returns>
|
337
|
+
<param name="type">Reference to the calling object.</param>
|
338
|
+
</member>
|
339
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.EntitySets(Microsoft.Data.Edm.IEdmEntityContainer)">
|
340
|
+
<summary>Returns entity sets belonging to <see cref="T:Microsoft.Data.Edm.IEdmEntityContainer" />.</summary>
|
341
|
+
<returns>Entity sets belonging to an <see cref="T:Microsoft.Data.Edm.IEdmEntityContainer" />.</returns>
|
342
|
+
<param name="container">Reference to the calling object.</param>
|
343
|
+
</member>
|
344
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.EntityType(Microsoft.Data.Edm.IEdmEntityReferenceTypeReference)">
|
345
|
+
<summary>Gets the entity type referred to by the definition of this entity reference type reference.</summary>
|
346
|
+
<returns>The entity type referred to by the definition of this entity reference type reference.</returns>
|
347
|
+
<param name="type">Reference to the calling object.</param>
|
348
|
+
</member>
|
349
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.EnumDefinition(Microsoft.Data.Edm.IEdmEnumTypeReference)">
|
350
|
+
<summary>Gets the definition of this enumeration reference.</summary>
|
351
|
+
<returns>The definition of this enumeration reference.</returns>
|
352
|
+
<param name="type">Reference to the calling object.</param>
|
353
|
+
</member>
|
354
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Errors(Microsoft.Data.Edm.IEdmAssociation)">
|
355
|
+
<summary>Gets the errors, if any, that belong to this element or other nearby elements that might affect the validity of this element.</summary>
|
356
|
+
<returns>Any errors that belong to this element or other nearby elements that might affect the validity of this element.</returns>
|
357
|
+
<param name="type">Reference to the calling object.</param>
|
358
|
+
</member>
|
359
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Errors(Microsoft.Data.Edm.IEdmAssociationSet)">
|
360
|
+
<summary>Gets the errors, if any, which belong to this element or other nearby elements that might affect the validity of this element.</summary>
|
361
|
+
<returns>Any errors that belong to this element or other nearby elements that might affect the validity of this element.</returns>
|
362
|
+
<param name="set">Reference to the calling object.</param>
|
363
|
+
</member>
|
364
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Errors(Microsoft.Data.Edm.IEdmElement)">
|
365
|
+
<summary>Gets the errors, if any, which belong to this element or other nearby elements that might affect the validity of this element.</summary>
|
366
|
+
<returns>Any errors that belong to this element or other nearby elements that might affect the validity of this element.</returns>
|
367
|
+
<param name="element">Reference to the calling object.</param>
|
368
|
+
</member>
|
369
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Errors(Microsoft.Data.Edm.IEdmEnumType)">
|
370
|
+
<summary>Gets the errors, if any, which belong to this element or other nearby elements that might affect the validity of this element.</summary>
|
371
|
+
<returns>Any errors that belong to this element or other nearby elements that might affect the validity of this element.</returns>
|
372
|
+
<param name="type">Reference to the calling object.</param>
|
373
|
+
</member>
|
374
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Errors(Microsoft.Data.Edm.IEdmFunctionBase)">
|
375
|
+
<summary>Gets the errors, if any, which belong to this element or other nearby elements that might affect the validity of this element.</summary>
|
376
|
+
<returns>Any errors that belong to this element or other nearby elements that might affect the validity of this element.</returns>
|
377
|
+
<param name="function">Reference to the calling object.</param>
|
378
|
+
</member>
|
379
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Errors(Microsoft.Data.Edm.IEdmFunctionParameter)">
|
380
|
+
<summary>Gets the errors, if any, which belong to this element or other nearby elements that might affect the validity of this element.</summary>
|
381
|
+
<returns>Any errors that belong to this element or other nearby elements that might affect the validity of this element.</returns>
|
382
|
+
<param name="parameter">Reference to the calling object.</param>
|
383
|
+
</member>
|
384
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Errors(Microsoft.Data.Edm.IEdmProperty)">
|
385
|
+
<summary>Gets the errors, if any, which belong to this element or other nearby elements that might affect the validity of this element.</summary>
|
386
|
+
<returns>Any errors that belong to this element or other nearby elements that might affect the validity of this element.</returns>
|
387
|
+
<param name="property">Reference to the calling object.</param>
|
388
|
+
</member>
|
389
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Errors(Microsoft.Data.Edm.IEdmTypeReference)">
|
390
|
+
<summary>Gets the errors, if any, which belong to this element or other nearby elements that might affect the validity of this element.</summary>
|
391
|
+
<returns>Any errors that belong to this element or other nearby elements that might affect the validity of this element.</returns>
|
392
|
+
<param name="type">Reference to the calling object.</param>
|
393
|
+
</member>
|
394
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.FindNavigationProperty(Microsoft.Data.Edm.IEdmEntityTypeReference,System.String)">
|
395
|
+
<summary>Finds a navigation property declared in the definition of this reference by name.</summary>
|
396
|
+
<returns>The requested navigation property if it exists. Otherwise, null.</returns>
|
397
|
+
<param name="type">Reference to the calling object.</param>
|
398
|
+
<param name="name">Name of the navigation property to find.</param>
|
399
|
+
</member>
|
400
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.FindProperty(Microsoft.Data.Edm.IEdmStructuredTypeReference,System.String)">
|
401
|
+
<summary>Finds a property from the definition of this reference.</summary>
|
402
|
+
<returns>The requested property if it exists. Otherwise, null.</returns>
|
403
|
+
<param name="type">Reference to the calling object.</param>
|
404
|
+
<param name="name">Name of the property to find.</param>
|
405
|
+
</member>
|
406
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.FindTypeAcrossModels(Microsoft.Data.Edm.IEdmModel,System.String)">
|
407
|
+
<summary>Searches for a type with the given name in this model and all referenced models and returns null if no such type exists.</summary>
|
408
|
+
<returns>The requested type, or null if no such type exists.</returns>
|
409
|
+
<param name="model">The model to search.</param>
|
410
|
+
<param name="qualifiedName">The qualified name of the type being found.</param>
|
411
|
+
</member>
|
412
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.FindValueTermAcrossModels(Microsoft.Data.Edm.IEdmModel,System.String)">
|
413
|
+
<summary>Searches for a value term with the given name in this model and all referenced models and returns null if no such value term exists.</summary>
|
414
|
+
<returns>The requested value term, or null if no such value term exists.</returns>
|
415
|
+
<param name="model">The model to search.</param>
|
416
|
+
<param name="qualifiedName">The qualified name of the value term being found.</param>
|
417
|
+
</member>
|
418
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.FindVocabularyAnnotationsAcrossModels(Microsoft.Data.Edm.IEdmModel,Microsoft.Data.Edm.IEdmAnnotatable)">
|
419
|
+
<summary>Gets an annotatable element's vocabulary annotations defined in a specific model and models referenced by that model.</summary>
|
420
|
+
<returns>Annotations attached to the element by this model or by models referenced by this model.</returns>
|
421
|
+
<param name="model">The model to search.</param>
|
422
|
+
<param name="element">Element to check for annotations.</param>
|
423
|
+
</member>
|
424
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.From(Microsoft.Data.Edm.IEdmNavigationProperty)">
|
425
|
+
<summary>Gets the from end of this navigation property.</summary>
|
426
|
+
<returns>The from end of this navigation property.</returns>
|
427
|
+
<param name="property">Reference to the calling object.</param>
|
428
|
+
</member>
|
429
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.FullName(Microsoft.Data.Edm.IEdmSchemaElement)">
|
430
|
+
<summary>Gets the full name of the element.</summary>
|
431
|
+
<returns>The full name of the element.</returns>
|
432
|
+
<param name="element">Reference to the calling object.</param>
|
433
|
+
</member>
|
434
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.FullName(Microsoft.Data.Edm.IEdmTypeReference)">
|
435
|
+
<summary>Gets the full name of the definition referred to by the type reference.</summary>
|
436
|
+
<returns>The full name of this references definition.</returns>
|
437
|
+
<param name="type">Reference to the calling object.</param>
|
438
|
+
</member>
|
439
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.FunctionImports(Microsoft.Data.Edm.IEdmEntityContainer)">
|
440
|
+
<summary>Returns function imports belonging to an IEdmEntityContainer.</summary>
|
441
|
+
<returns>Function imports belonging to an IEdmEntityContainer.</returns>
|
442
|
+
<param name="container">Reference to the calling object.</param>
|
443
|
+
</member>
|
444
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.GetAnnotation``1(Microsoft.Data.Edm.IEdmAnnotatable)">
|
445
|
+
<summary>Gets an annotation from the annotatable element.</summary>
|
446
|
+
<returns>The requested annotation if it exists. Otherwise, null.</returns>
|
447
|
+
<param name="annotatable">Reference to the calling object.</param>
|
448
|
+
<typeparam name="T">Type of the annotation being returned.</typeparam>
|
449
|
+
</member>
|
450
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.GetAnnotation``1(Microsoft.Data.Edm.IEdmAnnotatable,Microsoft.Data.Edm.Library.EdmTermName)">
|
451
|
+
<summary>Gets an annotation from the annotatable element.</summary>
|
452
|
+
<returns>The requested annotation if it exists. Otherwise, null.</returns>
|
453
|
+
<param name="annotatable">Reference to the calling object.</param>
|
454
|
+
<param name="name">Name of the annotation to retrieve.</param>
|
455
|
+
<typeparam name="T">Type of the annotation being returned.</typeparam>
|
456
|
+
</member>
|
457
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.GetAnnotation(Microsoft.Data.Edm.IEdmAnnotatable,Microsoft.Data.Edm.Library.EdmTermName)">
|
458
|
+
<summary>Gets an annotation from the annotatable element.</summary>
|
459
|
+
<returns>The requested annotation if it exists. Otherwise, null.</returns>
|
460
|
+
<param name="annotatable">Reference to the calling object.</param>
|
461
|
+
<param name="name">Name of the annotation to retrieve.</param>
|
462
|
+
</member>
|
463
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.GetAnnotation``1(Microsoft.Data.Edm.IEdmAnnotatable,System.String,System.String)">
|
464
|
+
<summary> ets an annotation corresponding to the given namespace and name provided.</summary>
|
465
|
+
<returns>The requested annotation if it exists. Otherwise, null.</returns>
|
466
|
+
<param name="annotatable">Reference to the calling object.</param>
|
467
|
+
<param name="namespaceName">Namespace of the annotation.</param>
|
468
|
+
<param name="localName">Name of the annotation inside the namespace.</param>
|
469
|
+
<typeparam name="T">Type of the annotation being returned.</typeparam>
|
470
|
+
</member>
|
471
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.GetDocumentation(Microsoft.Data.Edm.IEdmElement)">
|
472
|
+
<summary>Gets the documentation for the specified element. </summary>
|
473
|
+
<returns>The documentation that exists on the element. Otherwise, null.</returns>
|
474
|
+
<param name="element">Reference to the calling object.</param>
|
475
|
+
</member>
|
476
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.GetEdmVersion(Microsoft.Data.Edm.IEdmModel)">
|
477
|
+
<summary>Gets the value for the EDM version of the model.</summary>
|
478
|
+
<returns>The version.</returns>
|
479
|
+
<param name="model">Model the version has been set for.</param>
|
480
|
+
</member>
|
481
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsAbstract(Microsoft.Data.Edm.IEdmStructuredTypeReference)">
|
482
|
+
<summary>Gets whether the definition of this reference is abstract.</summary>
|
483
|
+
<returns>True if the definition of this reference is abstract; otherwise; false.</returns>
|
484
|
+
<param name="type">Reference to the calling object.</param>
|
485
|
+
</member>
|
486
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsAtomic(Microsoft.Data.Edm.IEdmCollectionTypeReference)">
|
487
|
+
<summary>Gets whether this reference refers to a collection.</summary>
|
488
|
+
<returns>True if this reference refers to a collection; otherwise, false.</returns>
|
489
|
+
<param name="type">Reference to the calling object.</param>
|
490
|
+
</member>
|
491
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmAssociation)">
|
492
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
493
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
494
|
+
<param name="type">Reference to the calling object.</param>
|
495
|
+
</member>
|
496
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmAssociationEnd)">
|
497
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
498
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
499
|
+
<param name="end">Reference to the calling object.</param>
|
500
|
+
</member>
|
501
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmAssociationSet)">
|
502
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
503
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
504
|
+
<param name="set">Reference to the calling object.</param>
|
505
|
+
</member>
|
506
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmAssociationSetEnd)">
|
507
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
508
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
509
|
+
<param name="end">Reference to the calling object.</param>
|
510
|
+
</member>
|
511
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmElement)">
|
512
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
513
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
514
|
+
<param name="element">Reference to the calling object.</param>
|
515
|
+
</member>
|
516
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmEntityReferenceType)">
|
517
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
518
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
519
|
+
<param name="type">Reference to the calling object.</param>
|
520
|
+
</member>
|
521
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmEntitySet)">
|
522
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
523
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
524
|
+
<param name="set">Reference to the calling object.</param>
|
525
|
+
</member>
|
526
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmEnumType)">
|
527
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
528
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
529
|
+
<param name="type">Reference to the calling object.</param>
|
530
|
+
</member>
|
531
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmFunctionBase)">
|
532
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
533
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
534
|
+
<param name="function">Reference to the calling object.</param>
|
535
|
+
</member>
|
536
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmFunctionImport)">
|
537
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
538
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
539
|
+
<param name="functionImport">Reference to the calling object.</param>
|
540
|
+
</member>
|
541
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmFunctionParameter)">
|
542
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
543
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
544
|
+
<param name="parameter">Reference to the calling object.</param>
|
545
|
+
</member>
|
546
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmNavigationProperty)">
|
547
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
548
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
549
|
+
<param name="property">Reference to the calling object.</param>
|
550
|
+
</member>
|
551
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmProperty)">
|
552
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
553
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
554
|
+
<param name="property">Reference to the calling object.</param>
|
555
|
+
</member>
|
556
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmReferentialConstraint)">
|
557
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
558
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
559
|
+
<param name="constraint">Reference to the calling object.</param>
|
560
|
+
</member>
|
561
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmStructuredType)">
|
562
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
563
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
564
|
+
<param name="type">Reference to the calling object.</param>
|
565
|
+
</member>
|
566
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsBad(Microsoft.Data.Edm.IEdmTypeReference)">
|
567
|
+
<summary>Specifies whether this element is an invalid element or is likely affected by an invalid element.</summary>
|
568
|
+
<returns>True if this element is an invalid element or is likely affected by an invalid element; otherwise, false.</returns>
|
569
|
+
<param name="type">Reference to the calling object.</param>
|
570
|
+
</member>
|
571
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.IsOpen(Microsoft.Data.Edm.IEdmStructuredTypeReference)">
|
572
|
+
<summary>Specifies whether the definition of this reference is open.</summary>
|
573
|
+
<returns>True if the definition of this reference is open; otherwise, false.</returns>
|
574
|
+
<param name="type">Reference to the calling object.</param>
|
575
|
+
</member>
|
576
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Key(Microsoft.Data.Edm.IEdmEntityType)">
|
577
|
+
<summary>Gets the declared key of the most defined entity with a declared key present.</summary>
|
578
|
+
<returns>Key of this type.</returns>
|
579
|
+
<param name="type">Reference to the calling object.</param>
|
580
|
+
</member>
|
581
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Key(Microsoft.Data.Edm.IEdmEntityTypeReference)">
|
582
|
+
<summary>Gets the entity key of the definition of this reference.</summary>
|
583
|
+
<returns>The entity key of the definition of this reference.</returns>
|
584
|
+
<param name="type">Reference to the calling object.</param>
|
585
|
+
</member>
|
586
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.LocalName(Microsoft.Data.Edm.Annotations.IEdmAnnotation)">
|
587
|
+
<summary>Gets the name of an annotation.</summary>
|
588
|
+
<returns>The name of the annotation.</returns>
|
589
|
+
<param name="annotation">Reference to the annotation.</param>
|
590
|
+
</member>
|
591
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Location(Microsoft.Data.Edm.IEdmElement)">
|
592
|
+
<summary>Gets the location, if any, of this element.</summary>
|
593
|
+
<returns>The location of the element, or null if the element is not locatable.</returns>
|
594
|
+
<param name="item">Reference to the calling object.</param>
|
595
|
+
</member>
|
596
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Namespace(Microsoft.Data.Edm.Annotations.IEdmAnnotation)">
|
597
|
+
<summary>Gets the namespace of an annotation.</summary>
|
598
|
+
<returns>The namespace of the annotation.</returns>
|
599
|
+
<param name="annotation">Reference to the annotation.</param>
|
600
|
+
</member>
|
601
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.NavigationProperties(Microsoft.Data.Edm.IEdmEntityType)">
|
602
|
+
<summary>Get the navigation properties declared in this entity type and all base types.</summary>
|
603
|
+
<returns>The navigation properties declared in this entity type and all base types.</returns>
|
604
|
+
<param name="type">Reference to the calling object.</param>
|
605
|
+
</member>
|
606
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.NavigationProperties(Microsoft.Data.Edm.IEdmEntityTypeReference)">
|
607
|
+
<summary>Gets the navigation properties declared in the definition of this reference and its base types.</summary>
|
608
|
+
<returns>The navigation properties declared in the definition of this reference and its base types.</returns>
|
609
|
+
<param name="type">Reference to the calling object.</param>
|
610
|
+
</member>
|
611
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.PrimitiveDefinition(Microsoft.Data.Edm.IEdmPrimitiveTypeReference)">
|
612
|
+
<summary>Gets the definition of this primitive type reference.</summary>
|
613
|
+
<returns>Definition of this primitive type reference.</returns>
|
614
|
+
<param name="type">Reference to the calling object.</param>
|
615
|
+
</member>
|
616
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.PrimitiveKind(Microsoft.Data.Edm.IEdmPrimitiveTypeReference)">
|
617
|
+
<summary>Gets the primitive kind of the definition referred to by this type reference.</summary>
|
618
|
+
<returns>Primitive kind of the definition of this reference.</returns>
|
619
|
+
<param name="type">Reference to the calling object.</param>
|
620
|
+
</member>
|
621
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.Properties(Microsoft.Data.Edm.IEdmStructuredType)">
|
622
|
+
<summary>Gets all properties of the structured type definition and its base types.</summary>
|
623
|
+
<returns>Properties of this type.</returns>
|
624
|
+
<param name="type">Reference to the calling object.</param>
|
625
|
+
</member>
|
626
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.RowDefinition(Microsoft.Data.Edm.IEdmRowTypeReference)">
|
627
|
+
<summary>Gets the definition of this row type reference.</summary>
|
628
|
+
<returns>The definition of this row type reference.</returns>
|
629
|
+
<param name="type">Reference to the calling object.</param>
|
630
|
+
</member>
|
631
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.SetAnnotation``1(Microsoft.Data.Edm.IEdmAnnotatable,Microsoft.Data.Edm.Library.EdmTermName,``0)">
|
632
|
+
<summary>Sets an annotation on the annotatable element.</summary>
|
633
|
+
<param name="annotatable">Reference to the calling object.</param>
|
634
|
+
<param name="name">Name of the annotation to set.</param>
|
635
|
+
<param name="value">Contents of the new annotation.</param>
|
636
|
+
<typeparam name="T">Type of the annotation being set.</typeparam>
|
637
|
+
</member>
|
638
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.SetAnnotation(Microsoft.Data.Edm.IEdmAnnotatable,System.String,System.String,Microsoft.Data.Edm.IEdmValue)">
|
639
|
+
<summary>Sets an annotation on the annotatable element.</summary>
|
640
|
+
<param name="annotatable">Reference to the calling object.</param>
|
641
|
+
<param name="namespaceName">Namespace of the annotation.</param>
|
642
|
+
<param name="localName">Name of the annotation inside the namespace.</param>
|
643
|
+
<param name="value">Contents of the new annotation.</param>
|
644
|
+
</member>
|
645
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.SetAnnotation``1(Microsoft.Data.Edm.IEdmAnnotatable,System.String,System.String,``0)">
|
646
|
+
<summary>Sets an annotation on the annotatable element.</summary>
|
647
|
+
<param name="annotatable">Reference to the calling object.</param>
|
648
|
+
<param name="namespaceName">Namespace of the annotation.</param>
|
649
|
+
<param name="localName">Name of the annotation inside the namespace.</param>
|
650
|
+
<param name="value">Contents of the new annotation.</param>
|
651
|
+
<typeparam name="T">Type of the annotation being set.</typeparam>
|
652
|
+
</member>
|
653
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.SetAnnotation``1(Microsoft.Data.Edm.IEdmAnnotatable,``0)">
|
654
|
+
<summary>Sets an annotation on the annotatable element.</summary>
|
655
|
+
<param name="annotatable">Reference to the calling object.</param>
|
656
|
+
<param name="value">Contents of the new annotation.</param>
|
657
|
+
<typeparam name="T">Type of the annotation being set.</typeparam>
|
658
|
+
</member>
|
659
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.SetDocumentation(Microsoft.Data.Edm.IEdmElement,Microsoft.Data.Edm.IEdmDocumentation)">
|
660
|
+
<summary>Sets documentation for the specified element.</summary>
|
661
|
+
<param name="element">Reference to the calling object.</param>
|
662
|
+
<param name="documentation">Documentation to set.</param>
|
663
|
+
</member>
|
664
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.SetEdmVersion(Microsoft.Data.Edm.IEdmModel,System.Version)">
|
665
|
+
<summary>Sets a value of EDM version attribute of the model.</summary>
|
666
|
+
<param name="model">The model the version should be set for.</param>
|
667
|
+
<param name="version">The version.</param>
|
668
|
+
</member>
|
669
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.StructuralProperties(Microsoft.Data.Edm.IEdmStructuredType)">
|
670
|
+
<summary>Gets the structural properties declared in this type definition and all base types.</summary>
|
671
|
+
<returns>The structural properties declared in this type definition and all base types.</returns>
|
672
|
+
<param name="type">Reference to the calling object.</param>
|
673
|
+
</member>
|
674
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.StructuralProperties(Microsoft.Data.Edm.IEdmStructuredTypeReference)">
|
675
|
+
<summary>Gets all structural properties declared in the definition of this reference and all its base types.</summary>
|
676
|
+
<returns>All structural properties declared in the definition of this reference and all its base types.</returns>
|
677
|
+
<param name="type">Reference to the calling object.</param>
|
678
|
+
</member>
|
679
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.StructuredDefinition(Microsoft.Data.Edm.IEdmStructuredTypeReference)">
|
680
|
+
<summary>Gets the definition of this structured type reference.</summary>
|
681
|
+
<returns>The definition of this structured type reference.</returns>
|
682
|
+
<param name="type">Reference to the calling object.</param>
|
683
|
+
</member>
|
684
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.ToTraceString(Microsoft.Data.Edm.IEdmSchemaElement)">
|
685
|
+
<summary>Returns the text representation of the current object.</summary>
|
686
|
+
<returns>The text representation of the current object.</returns>
|
687
|
+
<param name="schemaElement">Reference to the calling object.</param>
|
688
|
+
</member>
|
689
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.TypeKind(Microsoft.Data.Edm.IEdmTypeReference)">
|
690
|
+
<summary>Gets the type kind of the type references definition.</summary>
|
691
|
+
<returns>The type kind of the reference.</returns>
|
692
|
+
<param name="type">Reference to the calling object.</param>
|
693
|
+
</member>
|
694
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.TypeTerm(Microsoft.Data.Edm.Annotations.IEdmTypeAnnotation)">
|
695
|
+
<summary>Gets the type term of this type annotation.</summary>
|
696
|
+
<returns>The type term of this type annotation.</returns>
|
697
|
+
<param name="annotation">Reference to the calling object.</param>
|
698
|
+
</member>
|
699
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.ValueTerm(Microsoft.Data.Edm.Annotations.IEdmValueAnnotation)">
|
700
|
+
<summary>Gets the value term of this value annotation.</summary>
|
701
|
+
<returns>The value term of this value annotation.</returns>
|
702
|
+
<param name="annotation">Reference to the calling object.</param>
|
703
|
+
</member>
|
704
|
+
<member name="M:Microsoft.Data.Edm.ExtensionMethods.VocabularyAnnotations(Microsoft.Data.Edm.IEdmAnnotatable,Microsoft.Data.Edm.IEdmModel)">
|
705
|
+
<summary>Gets an annotatable element's vocabulary annotations as seen from a particular model.</summary>
|
706
|
+
<returns>Annotations attached to the element by the model or by models referenced by the model.</returns>
|
707
|
+
<param name="element">Reference to the calling object.</param>
|
708
|
+
<param name="model">Model to check for annotations.</param>
|
709
|
+
</member>
|
710
|
+
<member name="T:Microsoft.Data.Edm.IEdmAnnotatable">
|
711
|
+
<summary>Represents an EDM object that can have annotations.</summary>
|
712
|
+
</member>
|
713
|
+
<member name="M:Microsoft.Data.Edm.IEdmAnnotatable.GetAnnotation(System.String,System.String)">
|
714
|
+
<summary>Retrieves an annotation value from an EDM element. Returns null if no annotation with the given name exists.</summary>
|
715
|
+
<returns>Returns the annotation that corresponds to the provided name. Returns null if no annotation with the given name exists. </returns>
|
716
|
+
<param name="namespaceName">Namespace that the annotation belongs to.</param>
|
717
|
+
<param name="localName">Local name of the annotation.</param>
|
718
|
+
</member>
|
719
|
+
<member name="P:Microsoft.Data.Edm.IEdmAnnotatable.ImmediateAnnotations">
|
720
|
+
<summary>Gets the annotations associated with this element.</summary>
|
721
|
+
<returns>The annotations associated with this element.</returns>
|
722
|
+
</member>
|
723
|
+
<member name="M:Microsoft.Data.Edm.IEdmAnnotatable.SetAnnotation(System.String,System.String,System.Object)">
|
724
|
+
<summary>Sets an annotation value in an EDM element. If the value is null, no annotation is added and an existing annotation with the same name is removed.</summary>
|
725
|
+
<param name="namespaceName">Namespace that the annotation belongs to.</param>
|
726
|
+
<param name="localName">Name of the annotation within the namespace.</param>
|
727
|
+
<param name="value">New annotation to set</param>
|
728
|
+
</member>
|
729
|
+
<member name="T:Microsoft.Data.Edm.IEdmAssociation">
|
730
|
+
<summary>Represents a definition of an EDM association type.</summary>
|
731
|
+
</member>
|
732
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociation.End1">
|
733
|
+
<summary>Gets the first end of the association.</summary>
|
734
|
+
<returns>The first end of the association.</returns>
|
735
|
+
</member>
|
736
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociation.End2">
|
737
|
+
<summary>Gets the second end of the association.</summary>
|
738
|
+
<returns>The second end of the association.</returns>
|
739
|
+
</member>
|
740
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociation.ReferentialConstraint">
|
741
|
+
<summary>Gets the referential constraint of the association.</summary>
|
742
|
+
<returns>The referential constraint of the association.</returns>
|
743
|
+
</member>
|
744
|
+
<member name="T:Microsoft.Data.Edm.IEdmAssociationEnd">
|
745
|
+
<summary>Represents an end of an EDM association.</summary>
|
746
|
+
</member>
|
747
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociationEnd.DeclaringAssociation">
|
748
|
+
<summary>Gets the declaring association of this association end.</summary>
|
749
|
+
<returns>The declaring association of this association end.</returns>
|
750
|
+
</member>
|
751
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociationEnd.EntityType">
|
752
|
+
<summary>Gets the entity type of this end of the association.</summary>
|
753
|
+
<returns>The entity type of this end of the association.</returns>
|
754
|
+
</member>
|
755
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociationEnd.Multiplicity">
|
756
|
+
<summary>Gets this multiplicity of the end.</summary>
|
757
|
+
<returns>The multiplicity of the end.</returns>
|
758
|
+
</member>
|
759
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociationEnd.OnDelete">
|
760
|
+
<summary>Gets the action to execute on the deletion of this association end.</summary>
|
761
|
+
<returns>The action to execute on the deletion of this association end.</returns>
|
762
|
+
</member>
|
763
|
+
<member name="T:Microsoft.Data.Edm.IEdmAssociationSet">
|
764
|
+
<summary>Represents an EDM association set.</summary>
|
765
|
+
</member>
|
766
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociationSet.Association">
|
767
|
+
<summary>Gets the association of this association set.</summary>
|
768
|
+
<returns>The association of this association set.</returns>
|
769
|
+
</member>
|
770
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociationSet.End1">
|
771
|
+
<summary>Gets the first end of this association set.</summary>
|
772
|
+
<returns>The first end of this association set.</returns>
|
773
|
+
</member>
|
774
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociationSet.End2">
|
775
|
+
<summary>Gets the second end of this association set.</summary>
|
776
|
+
<returns>The second end of this association set.</returns>
|
777
|
+
</member>
|
778
|
+
<member name="T:Microsoft.Data.Edm.IEdmAssociationSetEnd">
|
779
|
+
<summary>Represents one of the ends of an EDM association set.</summary>
|
780
|
+
</member>
|
781
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociationSetEnd.EntitySet">
|
782
|
+
<summary>Gets the entity set this association set end corresponds to.</summary>
|
783
|
+
<returns>The entity set this association set end corresponds to.</returns>
|
784
|
+
</member>
|
785
|
+
<member name="P:Microsoft.Data.Edm.IEdmAssociationSetEnd.Role">
|
786
|
+
<summary>Gets the association end that describes the role of this association set end.</summary>
|
787
|
+
<returns>The association end that describes the role of this association set end.</returns>
|
788
|
+
</member>
|
789
|
+
<member name="T:Microsoft.Data.Edm.IEdmBinaryTypeReference">
|
790
|
+
<summary>Represents a reference to an EDM binary type.</summary>
|
791
|
+
</member>
|
792
|
+
<member name="P:Microsoft.Data.Edm.IEdmBinaryTypeReference.IsFixedLength">
|
793
|
+
<summary>Gets a value indicating whether this type specifies fixed length.</summary>
|
794
|
+
<returns>True if the type specifies fixed length; otherwise, false.</returns>
|
795
|
+
</member>
|
796
|
+
<member name="P:Microsoft.Data.Edm.IEdmBinaryTypeReference.IsMaxMaxLength">
|
797
|
+
<summary>Gets a value indicating whether this type specifies the maximum allowed max length.</summary>
|
798
|
+
<returns>True if the type specifies the maximum allowed max length; otherwise, false.</returns>
|
799
|
+
</member>
|
800
|
+
<member name="P:Microsoft.Data.Edm.IEdmBinaryTypeReference.MaxLength">
|
801
|
+
<summary>Gets the maximum length of this type.</summary>
|
802
|
+
<returns>The maximum length of this type.</returns>
|
803
|
+
</member>
|
804
|
+
<member name="T:Microsoft.Data.Edm.IEdmBinaryValue">
|
805
|
+
<summary>Represents an EDM binary value.</summary>
|
806
|
+
</member>
|
807
|
+
<member name="P:Microsoft.Data.Edm.IEdmBinaryValue.Value">
|
808
|
+
<summary>Gets the definition of this binary value.</summary>
|
809
|
+
<returns>The definition of this binary value.</returns>
|
810
|
+
</member>
|
811
|
+
<member name="T:Microsoft.Data.Edm.IEdmBooleanValue">
|
812
|
+
<summary>Represents an EDM Boolean value.</summary>
|
813
|
+
</member>
|
814
|
+
<member name="P:Microsoft.Data.Edm.IEdmBooleanValue.Value">
|
815
|
+
<summary>Gets a value indicating whether the value of this Boolean value is true or false.</summary>
|
816
|
+
<returns>True if the value of this Boolean value is true; otherwise, false.</returns>
|
817
|
+
</member>
|
818
|
+
<member name="T:Microsoft.Data.Edm.IEdmCheckable">
|
819
|
+
<summary>Defines an EDM component who is invalid or whose validity is unknown at construction.</summary>
|
820
|
+
</member>
|
821
|
+
<member name="P:Microsoft.Data.Edm.IEdmCheckable.Errors">
|
822
|
+
<summary>Gets an error if one exists with the current object.</summary>
|
823
|
+
<returns>An error.</returns>
|
824
|
+
</member>
|
825
|
+
<member name="T:Microsoft.Data.Edm.IEdmCollectionType">
|
826
|
+
<summary>Represents a definition of an EDM collection type.</summary>
|
827
|
+
</member>
|
828
|
+
<member name="P:Microsoft.Data.Edm.IEdmCollectionType.ElementType">
|
829
|
+
<summary>Gets the element type of this collection.</summary>
|
830
|
+
<returns>The element type of this collection.</returns>
|
831
|
+
</member>
|
832
|
+
<member name="P:Microsoft.Data.Edm.IEdmCollectionType.IsAtomic">
|
833
|
+
<summary>Gets a value indicating whether a collection should be treated as an atomic unit. If true, the type will be serialized to a CSDL as MultiValue, if false it will be serialized as Collection.</summary>
|
834
|
+
<returns>True if a collection should be treated as an atomic unit; otherwise, false.</returns>
|
835
|
+
</member>
|
836
|
+
<member name="T:Microsoft.Data.Edm.IEdmCollectionTypeReference">
|
837
|
+
<summary>Represents a reference to an EDM collection type.</summary>
|
838
|
+
</member>
|
839
|
+
<member name="T:Microsoft.Data.Edm.IEdmCollectionValue">
|
840
|
+
<summary>Represents an EDM collection value.</summary>
|
841
|
+
</member>
|
842
|
+
<member name="P:Microsoft.Data.Edm.IEdmCollectionValue.ElementValues">
|
843
|
+
<summary>Gets the values stored in this collection.</summary>
|
844
|
+
<returns>The values stored in this collection.</returns>
|
845
|
+
</member>
|
846
|
+
<member name="T:Microsoft.Data.Edm.IEdmComplexType">
|
847
|
+
<summary>Represents a definition of an EDM complex type.</summary>
|
848
|
+
</member>
|
849
|
+
<member name="T:Microsoft.Data.Edm.IEdmComplexTypeReference">
|
850
|
+
<summary>Represents a reference to an EDM complex type.</summary>
|
851
|
+
</member>
|
852
|
+
<member name="T:Microsoft.Data.Edm.IEdmDateTimeOffsetValue">
|
853
|
+
<summary>Represents an EDM DateTimeOffset value.</summary>
|
854
|
+
</member>
|
855
|
+
<member name="P:Microsoft.Data.Edm.IEdmDateTimeOffsetValue.Value">
|
856
|
+
<summary>Gets the definition of this DateTimeOffset value.</summary>
|
857
|
+
<returns>The definition of this DateTimeOffset value.</returns>
|
858
|
+
</member>
|
859
|
+
<member name="T:Microsoft.Data.Edm.IEdmDateTimeValue">
|
860
|
+
<summary>Represents an EDM DateTime value.</summary>
|
861
|
+
</member>
|
862
|
+
<member name="P:Microsoft.Data.Edm.IEdmDateTimeValue.Value">
|
863
|
+
<summary>Gets the definition of this DateTime value.</summary>
|
864
|
+
<returns>The definition of this DateTime value.</returns>
|
865
|
+
</member>
|
866
|
+
<member name="T:Microsoft.Data.Edm.IEdmDecimalTypeReference">
|
867
|
+
<summary>Represents a reference to an EDM decimal type.</summary>
|
868
|
+
</member>
|
869
|
+
<member name="P:Microsoft.Data.Edm.IEdmDecimalTypeReference.Precision">
|
870
|
+
<summary>Gets the precision of this type.</summary>
|
871
|
+
<returns>The precision of this type.</returns>
|
872
|
+
</member>
|
873
|
+
<member name="P:Microsoft.Data.Edm.IEdmDecimalTypeReference.Scale">
|
874
|
+
<summary>Gets the scale of this type.</summary>
|
875
|
+
<returns>The scale of this type.</returns>
|
876
|
+
</member>
|
877
|
+
<member name="T:Microsoft.Data.Edm.IEdmDecimalValue">
|
878
|
+
<summary>Represents an EDM decimal value.</summary>
|
879
|
+
</member>
|
880
|
+
<member name="P:Microsoft.Data.Edm.IEdmDecimalValue.Value">
|
881
|
+
<summary>Gets the definition of this decimal value.</summary>
|
882
|
+
<returns>The definition of this decimal value.</returns>
|
883
|
+
</member>
|
884
|
+
<member name="T:Microsoft.Data.Edm.IEdmDocumentation">
|
885
|
+
<summary>Represents an EDM documentation.</summary>
|
886
|
+
</member>
|
887
|
+
<member name="P:Microsoft.Data.Edm.IEdmDocumentation.LongDescription">
|
888
|
+
<summary>Gets a long description of this documentation.</summary>
|
889
|
+
<returns>A long description of this documentation.</returns>
|
890
|
+
</member>
|
891
|
+
<member name="P:Microsoft.Data.Edm.IEdmDocumentation.Summary">
|
892
|
+
<summary>Gets a summary of this documentation.</summary>
|
893
|
+
<returns>A summary of this documentation.</returns>
|
894
|
+
</member>
|
895
|
+
<member name="T:Microsoft.Data.Edm.IEdmElement">
|
896
|
+
<summary>Represents an EDM element.</summary>
|
897
|
+
</member>
|
898
|
+
<member name="T:Microsoft.Data.Edm.IEdmEntityContainer">
|
899
|
+
<summary>Represents an EDM entity container.</summary>
|
900
|
+
</member>
|
901
|
+
<member name="P:Microsoft.Data.Edm.IEdmEntityContainer.Elements">
|
902
|
+
<summary>Gets a collection of the elements of this entity container.</summary>
|
903
|
+
<returns>A collection of the elements of this entity container.</returns>
|
904
|
+
</member>
|
905
|
+
<member name="M:Microsoft.Data.Edm.IEdmEntityContainer.FindAssociationSet(System.String)">
|
906
|
+
<summary>Searches for an association set with the given name in this entity container and returns null if no such set exists.</summary>
|
907
|
+
<returns>The requested element, or null if the element does not exist.</returns>
|
908
|
+
<param name="setName">The name of the element being found.</param>
|
909
|
+
</member>
|
910
|
+
<member name="M:Microsoft.Data.Edm.IEdmEntityContainer.FindEntitySet(System.String)">
|
911
|
+
<summary>Searches for an entity set with the given name in this entity container and returns null if no such set exists.</summary>
|
912
|
+
<returns>The requested element, or null if the element does not exist.</returns>
|
913
|
+
<param name="setName">The name of the element being found.</param>
|
914
|
+
</member>
|
915
|
+
<member name="M:Microsoft.Data.Edm.IEdmEntityContainer.FindFunctionImports(System.String)">
|
916
|
+
<summary>Searches for function imports with the given name in this entity container and returns null if no such function import exists.</summary>
|
917
|
+
<returns>A group of the requested function imports, or null if no such function import exists.</returns>
|
918
|
+
<param name="functionName">The name of the function import being found.</param>
|
919
|
+
</member>
|
920
|
+
<member name="T:Microsoft.Data.Edm.IEdmEntityContainerElement">
|
921
|
+
<summary>Represents the common elements of all EDM entity container elements.</summary>
|
922
|
+
</member>
|
923
|
+
<member name="P:Microsoft.Data.Edm.IEdmEntityContainerElement.ContainerElementKind">
|
924
|
+
<summary>Gets the kind of element of this container element.</summary>
|
925
|
+
<returns>The kind of element of this container element.</returns>
|
926
|
+
</member>
|
927
|
+
<member name="T:Microsoft.Data.Edm.IEdmEntityReferenceType">
|
928
|
+
<summary>Represents a definition of an EDM entity reference type.</summary>
|
929
|
+
</member>
|
930
|
+
<member name="P:Microsoft.Data.Edm.IEdmEntityReferenceType.EntityType">
|
931
|
+
<summary>Gets the entity type pointed to by this entity reference.</summary>
|
932
|
+
<returns>The entity type pointed to by this entity reference.</returns>
|
933
|
+
</member>
|
934
|
+
<member name="T:Microsoft.Data.Edm.IEdmEntityReferenceTypeReference">
|
935
|
+
<summary>Represents a reference to an EDM entity reference type.</summary>
|
936
|
+
</member>
|
937
|
+
<member name="T:Microsoft.Data.Edm.IEdmEntitySet">
|
938
|
+
<summary>Represents an EDM entity set.</summary>
|
939
|
+
</member>
|
940
|
+
<member name="P:Microsoft.Data.Edm.IEdmEntitySet.ElementType">
|
941
|
+
<summary>Gets the entity type contained in this entity set.</summary>
|
942
|
+
<returns>The entity type contained in this entity set.</returns>
|
943
|
+
</member>
|
944
|
+
<member name="T:Microsoft.Data.Edm.IEdmEntityType">
|
945
|
+
<summary>Represents a definition of an EDM entity type.</summary>
|
946
|
+
</member>
|
947
|
+
<member name="P:Microsoft.Data.Edm.IEdmEntityType.DeclaredKey">
|
948
|
+
<summary>Gets the structural properties of the entity type that make up the entity key.</summary>
|
949
|
+
<returns>The structural properties of the entity type.</returns>
|
950
|
+
</member>
|
951
|
+
<member name="T:Microsoft.Data.Edm.IEdmEntityTypeReference">
|
952
|
+
<summary>Represents a reference for the definition of an EDM entity type.</summary>
|
953
|
+
</member>
|
954
|
+
<member name="T:Microsoft.Data.Edm.IEdmEnumMember">
|
955
|
+
<summary>Represents a definition of an EDM enumeration type member.</summary>
|
956
|
+
</member>
|
957
|
+
<member name="P:Microsoft.Data.Edm.IEdmEnumMember.DeclaringType">
|
958
|
+
<summary>Gets the type that this member belongs to.</summary>
|
959
|
+
<returns>The type that this member belongs to.</returns>
|
960
|
+
</member>
|
961
|
+
<member name="P:Microsoft.Data.Edm.IEdmEnumMember.Value">
|
962
|
+
<summary>Gets the value of this enumeration type member.</summary>
|
963
|
+
<returns>The value of this enumeration type member.</returns>
|
964
|
+
</member>
|
965
|
+
<member name="T:Microsoft.Data.Edm.IEdmEnumType">
|
966
|
+
<summary>Represents a definition of an EDM enumeration type.</summary>
|
967
|
+
</member>
|
968
|
+
<member name="P:Microsoft.Data.Edm.IEdmEnumType.Members">
|
969
|
+
<summary>Gets the members of this enumeration type.</summary>
|
970
|
+
<returns>The members of this enumeration type.</returns>
|
971
|
+
</member>
|
972
|
+
<member name="P:Microsoft.Data.Edm.IEdmEnumType.TreatAsBits">
|
973
|
+
<summary>Gets a value indicating whether the enumeration type can be treated as a bit field.</summary>
|
974
|
+
<returns>True if the value indicating whether the enumeration type can be treated as a bit field; otherwise, false.</returns>
|
975
|
+
</member>
|
976
|
+
<member name="P:Microsoft.Data.Edm.IEdmEnumType.UnderlyingType">
|
977
|
+
<summary>Gets the underlying type of this enumeration type.</summary>
|
978
|
+
<returns>The underlying type of this enumeration type.</returns>
|
979
|
+
</member>
|
980
|
+
<member name="T:Microsoft.Data.Edm.IEdmEnumTypeReference">
|
981
|
+
<summary>Represents a reference for a definition of an EDM enumeration type.</summary>
|
982
|
+
</member>
|
983
|
+
<member name="T:Microsoft.Data.Edm.IEdmFloatingValue">
|
984
|
+
<summary>Represents an EDM floating point value.</summary>
|
985
|
+
</member>
|
986
|
+
<member name="P:Microsoft.Data.Edm.IEdmFloatingValue.Value">
|
987
|
+
<summary>Gets the definition of this floating value.</summary>
|
988
|
+
<returns>The definition of this floating value.</returns>
|
989
|
+
</member>
|
990
|
+
<member name="T:Microsoft.Data.Edm.IEdmFunction">
|
991
|
+
<summary>Represents an EDM function.</summary>
|
992
|
+
</member>
|
993
|
+
<member name="P:Microsoft.Data.Edm.IEdmFunction.DefiningExpression">
|
994
|
+
<summary>Gets the defining expression of this function.</summary>
|
995
|
+
<returns>The defining expression of this function.</returns>
|
996
|
+
</member>
|
997
|
+
<member name="T:Microsoft.Data.Edm.IEdmFunctionBase">
|
998
|
+
<summary>Represents the common base type of EDM functions and function imports.</summary>
|
999
|
+
</member>
|
1000
|
+
<member name="M:Microsoft.Data.Edm.IEdmFunctionBase.FindParameter(System.String)">
|
1001
|
+
<summary>Searches for a parameter with the given name, and returns null if no such parameter exists.</summary>
|
1002
|
+
<returns>The requested parameter or null if no such parameter exists.</returns>
|
1003
|
+
<param name="name">The name of the parameter being found.</param>
|
1004
|
+
</member>
|
1005
|
+
<member name="P:Microsoft.Data.Edm.IEdmFunctionBase.Parameters">
|
1006
|
+
<summary>Gets the collection of parameters for this function.</summary>
|
1007
|
+
<returns>The collection of parameters for this function.</returns>
|
1008
|
+
</member>
|
1009
|
+
<member name="P:Microsoft.Data.Edm.IEdmFunctionBase.ReturnType">
|
1010
|
+
<summary>Gets the return type of this function.</summary>
|
1011
|
+
<returns>The return type of this function.</returns>
|
1012
|
+
</member>
|
1013
|
+
<member name="T:Microsoft.Data.Edm.IEdmFunctionImport">
|
1014
|
+
<summary>Represents an EDM function import.</summary>
|
1015
|
+
</member>
|
1016
|
+
<member name="P:Microsoft.Data.Edm.IEdmFunctionImport.Bindable">
|
1017
|
+
<summary>Gets a value indicating whether this function import can be used as an extension method for the type of the first parameter of this function import.</summary>
|
1018
|
+
<returns>True if the function import can be used as an extension method for the type of the first parameter of this function import; otherwise, false.</returns>
|
1019
|
+
</member>
|
1020
|
+
<member name="P:Microsoft.Data.Edm.IEdmFunctionImport.Composable">
|
1021
|
+
<summary>Gets a value indicating whether this function import can be composed inside expressions. <see cref="P:Microsoft.Data.Edm.IEdmFunctionImport.Composable" /> cannot be set to true if <see cref="P:Microsoft.Data.Edm.IEdmFunctionImport.Composable" /> is set to true.</summary>
|
1022
|
+
<returns>True if the function import can be composed inside expressions; otherwise, false.</returns>
|
1023
|
+
</member>
|
1024
|
+
<member name="P:Microsoft.Data.Edm.IEdmFunctionImport.EntitySet">
|
1025
|
+
<summary>Gets the entity set where the result of this function import will be contained in.</summary>
|
1026
|
+
<returns>The entity set where the result of this function import will be contained in.</returns>
|
1027
|
+
</member>
|
1028
|
+
<member name="P:Microsoft.Data.Edm.IEdmFunctionImport.EntitySetPath">
|
1029
|
+
<summary>Gets the entity set path of the function import.</summary>
|
1030
|
+
<returns>The entity set path of the function import.</returns>
|
1031
|
+
</member>
|
1032
|
+
<member name="P:Microsoft.Data.Edm.IEdmFunctionImport.SideEffecting">
|
1033
|
+
<summary>Gets a value indicating whether this function import has side-effects. <see cref="P:Microsoft.Data.Edm.IEdmFunctionImport.SideEffecting" /> cannot be set to true if <see cref="P:Microsoft.Data.Edm.IEdmFunctionImport.SideEffecting" /> is set to true.</summary>
|
1034
|
+
<returns>True if the function import has side-effects; otherwise, false.</returns>
|
1035
|
+
</member>
|
1036
|
+
<member name="T:Microsoft.Data.Edm.IEdmFunctionParameter">
|
1037
|
+
<summary>Represents a parameter of an EDM function.</summary>
|
1038
|
+
</member>
|
1039
|
+
<member name="P:Microsoft.Data.Edm.IEdmFunctionParameter.Mode">
|
1040
|
+
<summary>Gets the mode of this function parameter.</summary>
|
1041
|
+
<returns>The mode of this function parameter.</returns>
|
1042
|
+
</member>
|
1043
|
+
<member name="P:Microsoft.Data.Edm.IEdmFunctionParameter.Type">
|
1044
|
+
<summary>Gets the type of this function parameter.</summary>
|
1045
|
+
<returns>The type of this function parameter.</returns>
|
1046
|
+
</member>
|
1047
|
+
<member name="T:Microsoft.Data.Edm.IEdmGuidValue">
|
1048
|
+
<summary>Represents an EDM integer value.</summary>
|
1049
|
+
</member>
|
1050
|
+
<member name="P:Microsoft.Data.Edm.IEdmGuidValue.Value">
|
1051
|
+
<summary>Gets the definition of this GUID value.</summary>
|
1052
|
+
<returns>The definition of this GUID value.</returns>
|
1053
|
+
</member>
|
1054
|
+
<member name="T:Microsoft.Data.Edm.IEdmIntegerValue">
|
1055
|
+
<summary>Represents an EDM integer value.</summary>
|
1056
|
+
</member>
|
1057
|
+
<member name="P:Microsoft.Data.Edm.IEdmIntegerValue.Value">
|
1058
|
+
<summary>Gets the definition of this integer value.</summary>
|
1059
|
+
<returns>The definition of this integer value.</returns>
|
1060
|
+
</member>
|
1061
|
+
<member name="T:Microsoft.Data.Edm.IEdmLocatable">
|
1062
|
+
<summary>Represents the interface for all EDM elements that can be located.</summary>
|
1063
|
+
</member>
|
1064
|
+
<member name="P:Microsoft.Data.Edm.IEdmLocatable.Location">
|
1065
|
+
<summary>Gets the location of this element.</summary>
|
1066
|
+
<returns>The location of this element.</returns>
|
1067
|
+
</member>
|
1068
|
+
<member name="T:Microsoft.Data.Edm.IEdmModel">
|
1069
|
+
<summary>Semantic representation of an EDM model.</summary>
|
1070
|
+
</member>
|
1071
|
+
<member name="P:Microsoft.Data.Edm.IEdmModel.EntityContainers">
|
1072
|
+
<summary>Gets the collection of entity containers in this model.</summary>
|
1073
|
+
<returns>The collection of entity containers in this model.</returns>
|
1074
|
+
</member>
|
1075
|
+
<member name="M:Microsoft.Data.Edm.IEdmModel.FindAssociation(System.String)">
|
1076
|
+
<summary>Searches for an association with the given name in this model and returns null if no such association exists.</summary>
|
1077
|
+
<returns>The requested association, or null if no such association exists.</returns>
|
1078
|
+
<param name="qualifiedName">The qualified name of the association being found.</param>
|
1079
|
+
</member>
|
1080
|
+
<member name="M:Microsoft.Data.Edm.IEdmModel.FindEntityContainer(System.String)">
|
1081
|
+
<summary>Searches for an entity container with the given name in this model and returns null if no such entity container exists.</summary>
|
1082
|
+
<returns>The requested entity container, or null if no such entity container exists.</returns>
|
1083
|
+
<param name="name">The name of the entity container being found.</param>
|
1084
|
+
</member>
|
1085
|
+
<member name="M:Microsoft.Data.Edm.IEdmModel.FindFunctions(System.String)">
|
1086
|
+
<summary>Searches for functions with the given name in this model and returns an empty enumerable if no such function exists.</summary>
|
1087
|
+
<returns>A set functions sharing the specified qualified name, or an empty enumerable if no such function exists.</returns>
|
1088
|
+
<param name="qualifiedName">The qualified name of the function being found.</param>
|
1089
|
+
</member>
|
1090
|
+
<member name="M:Microsoft.Data.Edm.IEdmModel.FindType(System.String)">
|
1091
|
+
<summary>Searches for a type with the given name in this model and returns null if no such type exists.</summary>
|
1092
|
+
<returns>The requested type, or null if no such type exists.</returns>
|
1093
|
+
<param name="qualifiedName">The qualified name of the type being found.</param>
|
1094
|
+
</member>
|
1095
|
+
<member name="M:Microsoft.Data.Edm.IEdmModel.FindValueTerm(System.String)">
|
1096
|
+
<summary>Searches for a value term with the given name in this model and returns null if no such value term exists.</summary>
|
1097
|
+
<returns>The requested value term, or null if no such value term exists.</returns>
|
1098
|
+
<param name="qualifiedName">The qualified name of the value term being found.</param>
|
1099
|
+
</member>
|
1100
|
+
<member name="M:Microsoft.Data.Edm.IEdmModel.FindVocabularyAnnotations(Microsoft.Data.Edm.IEdmAnnotatable)">
|
1101
|
+
<summary>Searches for vocabulary annotations specified by this model or a referenced model for a given element.</summary>
|
1102
|
+
<returns>The vocabulary annotations for the element.</returns>
|
1103
|
+
<param name="element">The annotated element.</param>
|
1104
|
+
</member>
|
1105
|
+
<member name="P:Microsoft.Data.Edm.IEdmModel.References">
|
1106
|
+
<summary>Gets the collection of models referred to by this model.</summary>
|
1107
|
+
<returns>The collection of models referred to by this model.</returns>
|
1108
|
+
</member>
|
1109
|
+
<member name="P:Microsoft.Data.Edm.IEdmModel.SchemaElements">
|
1110
|
+
<summary>Gets the collection of schema elements that are contained in this model.</summary>
|
1111
|
+
<returns>The collection of schema elements that are contained in this model.</returns>
|
1112
|
+
</member>
|
1113
|
+
<member name="P:Microsoft.Data.Edm.IEdmModel.VocabularyAnnotations">
|
1114
|
+
<summary>Gets the collection of vocabulary annotations that are contained in this model.</summary>
|
1115
|
+
<returns>The collection of vocabulary annotations.</returns>
|
1116
|
+
</member>
|
1117
|
+
<member name="T:Microsoft.Data.Edm.IEdmNamedElement">
|
1118
|
+
<summary>Common base interface for all named EDM elements.</summary>
|
1119
|
+
</member>
|
1120
|
+
<member name="P:Microsoft.Data.Edm.IEdmNamedElement.Name">
|
1121
|
+
<summary>Gets the name of this element.</summary>
|
1122
|
+
<returns>The name of this element.</returns>
|
1123
|
+
</member>
|
1124
|
+
<member name="T:Microsoft.Data.Edm.IEdmNavigationProperty">
|
1125
|
+
<summary>Represents an EDM navigation property.</summary>
|
1126
|
+
</member>
|
1127
|
+
<member name="P:Microsoft.Data.Edm.IEdmNavigationProperty.To">
|
1128
|
+
<summary>Gets the destination end of this navigation property.</summary>
|
1129
|
+
<returns>The destination end of this navigation property.</returns>
|
1130
|
+
</member>
|
1131
|
+
<member name="T:Microsoft.Data.Edm.IEdmPrimitiveType">
|
1132
|
+
<summary>Represents a definition of an EDM primitive type.</summary>
|
1133
|
+
</member>
|
1134
|
+
<member name="P:Microsoft.Data.Edm.IEdmPrimitiveType.PrimitiveKind">
|
1135
|
+
<summary>Gets the primitive kind of this type.</summary>
|
1136
|
+
<returns>The primitive kind of this type.</returns>
|
1137
|
+
</member>
|
1138
|
+
<member name="T:Microsoft.Data.Edm.IEdmPrimitiveTypeReference">
|
1139
|
+
<summary>Represents a reference to definition of an EDM primitive type.</summary>
|
1140
|
+
</member>
|
1141
|
+
<member name="T:Microsoft.Data.Edm.IEdmPrimitiveValue">
|
1142
|
+
<summary>Represents an EDM primitive value.</summary>
|
1143
|
+
</member>
|
1144
|
+
<member name="T:Microsoft.Data.Edm.IEdmProperty">
|
1145
|
+
<summary>Represents an EDM property.</summary>
|
1146
|
+
</member>
|
1147
|
+
<member name="P:Microsoft.Data.Edm.IEdmProperty.DeclaringType">
|
1148
|
+
<summary>Gets the type that this property belongs to.</summary>
|
1149
|
+
<returns>The type that this property belongs to.</returns>
|
1150
|
+
</member>
|
1151
|
+
<member name="P:Microsoft.Data.Edm.IEdmProperty.PropertyKind">
|
1152
|
+
<summary>Gets the kind of this property.</summary>
|
1153
|
+
<returns>The kind of this property.</returns>
|
1154
|
+
</member>
|
1155
|
+
<member name="P:Microsoft.Data.Edm.IEdmProperty.Type">
|
1156
|
+
<summary>Gets the type of this property.</summary>
|
1157
|
+
<returns>The type of this property.</returns>
|
1158
|
+
</member>
|
1159
|
+
<member name="T:Microsoft.Data.Edm.IEdmPropertyValue">
|
1160
|
+
<summary>Represents a value of an EDM property.</summary>
|
1161
|
+
</member>
|
1162
|
+
<member name="P:Microsoft.Data.Edm.IEdmPropertyValue.Property">
|
1163
|
+
<summary>Gets the property this value is associated with.</summary>
|
1164
|
+
<returns>The property this value is associated with.</returns>
|
1165
|
+
</member>
|
1166
|
+
<member name="P:Microsoft.Data.Edm.IEdmPropertyValue.Value">
|
1167
|
+
<summary>Gets the data stored in this value.</summary>
|
1168
|
+
<returns>The data stored in this value.</returns>
|
1169
|
+
</member>
|
1170
|
+
<member name="T:Microsoft.Data.Edm.IEdmReferentialConstraint">
|
1171
|
+
<summary>Represents an EDM referential constraint in an association type.</summary>
|
1172
|
+
</member>
|
1173
|
+
<member name="P:Microsoft.Data.Edm.IEdmReferentialConstraint.DependentProperties">
|
1174
|
+
<summary>Gets the dependent properties of this referential constraint. (The principal properties of the constraint are the key of the principal end.)</summary>
|
1175
|
+
<returns>The dependent properties of this referential constraint.</returns>
|
1176
|
+
</member>
|
1177
|
+
<member name="P:Microsoft.Data.Edm.IEdmReferentialConstraint.PrincipalEnd">
|
1178
|
+
<summary>Gets the principal end of this referential constraint.</summary>
|
1179
|
+
<returns>The principal end of this referential constraint.</returns>
|
1180
|
+
</member>
|
1181
|
+
<member name="T:Microsoft.Data.Edm.IEdmRowType">
|
1182
|
+
<summary>Represents an EDM row type.</summary>
|
1183
|
+
</member>
|
1184
|
+
<member name="T:Microsoft.Data.Edm.IEdmRowTypeReference">
|
1185
|
+
<summary>Represents a reference to an EDM row type.</summary>
|
1186
|
+
</member>
|
1187
|
+
<member name="T:Microsoft.Data.Edm.IEdmRowValue">
|
1188
|
+
<summary>Represents a value of an EDM row.</summary>
|
1189
|
+
</member>
|
1190
|
+
<member name="T:Microsoft.Data.Edm.IEdmSchemaElement">
|
1191
|
+
<summary>Common base interface for all named children of EDM schemata.</summary>
|
1192
|
+
</member>
|
1193
|
+
<member name="P:Microsoft.Data.Edm.IEdmSchemaElement.Namespace">
|
1194
|
+
<summary>Gets the namespace this schema element belongs to.</summary>
|
1195
|
+
<returns>The namespace this schema element belongs to.</returns>
|
1196
|
+
</member>
|
1197
|
+
<member name="P:Microsoft.Data.Edm.IEdmSchemaElement.SchemaElementKind">
|
1198
|
+
<summary>Gets the kind of this schema element.</summary>
|
1199
|
+
<returns>The kind of this schema element.</returns>
|
1200
|
+
</member>
|
1201
|
+
<member name="T:Microsoft.Data.Edm.IEdmSchemaType">
|
1202
|
+
<summary>Represents an EDM schema type.</summary>
|
1203
|
+
</member>
|
1204
|
+
<member name="T:Microsoft.Data.Edm.IEdmSpatialTypeReference">
|
1205
|
+
<summary>Represents a reference to an EDM spatial type.</summary>
|
1206
|
+
</member>
|
1207
|
+
<member name="P:Microsoft.Data.Edm.IEdmSpatialTypeReference.SpatialReferenceIdentifier">
|
1208
|
+
<summary>Gets the spatial reference identifier of this spatial type.</summary>
|
1209
|
+
<returns>The spatial reference identifier of this spatial type.</returns>
|
1210
|
+
</member>
|
1211
|
+
<member name="T:Microsoft.Data.Edm.IEdmStringTypeReference">
|
1212
|
+
<summary>Represents a reference to an EDM string type.</summary>
|
1213
|
+
</member>
|
1214
|
+
<member name="P:Microsoft.Data.Edm.IEdmStringTypeReference.Collation">
|
1215
|
+
<summary>Gets a string representing the collation of this string type.</summary>
|
1216
|
+
<returns>A string representing the collation of this string type.</returns>
|
1217
|
+
</member>
|
1218
|
+
<member name="P:Microsoft.Data.Edm.IEdmStringTypeReference.IsFixedLength">
|
1219
|
+
<summary>Gets a value indicating whether this string type specifies fixed length.</summary>
|
1220
|
+
<returns>True if this string type specifies fixed length; otherwise, false.</returns>
|
1221
|
+
</member>
|
1222
|
+
<member name="P:Microsoft.Data.Edm.IEdmStringTypeReference.IsMaxMaxLength">
|
1223
|
+
<summary>Gets a value indicating whether this string type specifies the maximum allowed maximum length.</summary>
|
1224
|
+
<returns>True if this string type specifies the maximum allowed maximum length; otherwise, false.</returns>
|
1225
|
+
</member>
|
1226
|
+
<member name="P:Microsoft.Data.Edm.IEdmStringTypeReference.IsUnicode">
|
1227
|
+
<summary>Gets a value indicating whether this string type supports Unicode encoding.</summary>
|
1228
|
+
<returns>True if this string type supports Unicode encoding; otherwise, false.</returns>
|
1229
|
+
</member>
|
1230
|
+
<member name="P:Microsoft.Data.Edm.IEdmStringTypeReference.MaxLength">
|
1231
|
+
<summary>Gets the maximum length of this string type.</summary>
|
1232
|
+
<returns>The maximum length of this string type.</returns>
|
1233
|
+
</member>
|
1234
|
+
<member name="T:Microsoft.Data.Edm.IEdmStringValue">
|
1235
|
+
<summary>Represents an EDM string value.</summary>
|
1236
|
+
</member>
|
1237
|
+
<member name="P:Microsoft.Data.Edm.IEdmStringValue.Value">
|
1238
|
+
<summary>Gets the definition of this string value.</summary>
|
1239
|
+
<returns>The definition of this string value.</returns>
|
1240
|
+
</member>
|
1241
|
+
<member name="T:Microsoft.Data.Edm.IEdmStructuralProperty">
|
1242
|
+
<summary>Represents an EDM structural (that is, non-navigation) property.</summary>
|
1243
|
+
</member>
|
1244
|
+
<member name="P:Microsoft.Data.Edm.IEdmStructuralProperty.ConcurrencyMode">
|
1245
|
+
<summary>Gets the concurrency mode of this property.</summary>
|
1246
|
+
<returns>The concurrency mode of this property.</returns>
|
1247
|
+
</member>
|
1248
|
+
<member name="P:Microsoft.Data.Edm.IEdmStructuralProperty.DefaultValue">
|
1249
|
+
<summary>Gets the default value of this property.</summary>
|
1250
|
+
<returns>The default value of this property.</returns>
|
1251
|
+
</member>
|
1252
|
+
<member name="T:Microsoft.Data.Edm.IEdmStructuredType">
|
1253
|
+
<summary>Represents the common base interface for definitions of EDM structured types.</summary>
|
1254
|
+
</member>
|
1255
|
+
<member name="P:Microsoft.Data.Edm.IEdmStructuredType.BaseType">
|
1256
|
+
<summary>Gets the base type of this type.</summary>
|
1257
|
+
<returns>The base type of this type.</returns>
|
1258
|
+
</member>
|
1259
|
+
<member name="P:Microsoft.Data.Edm.IEdmStructuredType.DeclaredProperties">
|
1260
|
+
<summary>Gets the properties declared immediately within this type.</summary>
|
1261
|
+
<returns>The properties declared immediately within this type.</returns>
|
1262
|
+
</member>
|
1263
|
+
<member name="M:Microsoft.Data.Edm.IEdmStructuredType.FindProperty(System.String)">
|
1264
|
+
<summary>Searches for a structural or navigation property with the given name in this type and all base types and returns null if no such property exists.</summary>
|
1265
|
+
<returns>The requested property, or null if no such property exists.</returns>
|
1266
|
+
<param name="name">The name of the property being found.</param>
|
1267
|
+
</member>
|
1268
|
+
<member name="P:Microsoft.Data.Edm.IEdmStructuredType.IsAbstract">
|
1269
|
+
<summary>Gets a value indicating whether this type is abstract.</summary>
|
1270
|
+
<returns>True if this type is abstract; otherwise, false.</returns>
|
1271
|
+
</member>
|
1272
|
+
<member name="P:Microsoft.Data.Edm.IEdmStructuredType.IsOpen">
|
1273
|
+
<summary>Gets a value indicating whether this type is open.</summary>
|
1274
|
+
<returns>True if this type is open; otherwise, false.</returns>
|
1275
|
+
</member>
|
1276
|
+
<member name="T:Microsoft.Data.Edm.IEdmStructuredTypeReference">
|
1277
|
+
<summary>Represents a reference to an EDM structured type.</summary>
|
1278
|
+
</member>
|
1279
|
+
<member name="T:Microsoft.Data.Edm.IEdmStructuredValue">
|
1280
|
+
<summary>Represents an EDM structured value.</summary>
|
1281
|
+
</member>
|
1282
|
+
<member name="M:Microsoft.Data.Edm.IEdmStructuredValue.FindPropertyValue(Microsoft.Data.Edm.IEdmProperty)">
|
1283
|
+
<summary>Finds the value corresponding to the provided IEdmProperty.</summary>
|
1284
|
+
<returns>The found property, or null if no property was found.</returns>
|
1285
|
+
<param name="property">Property to find the value of.</param>
|
1286
|
+
</member>
|
1287
|
+
<member name="P:Microsoft.Data.Edm.IEdmStructuredValue.PropertyValues">
|
1288
|
+
<summary>Gets the property values of this structured value.</summary>
|
1289
|
+
<returns>The property values of this structured value.</returns>
|
1290
|
+
</member>
|
1291
|
+
<member name="T:Microsoft.Data.Edm.IEdmTemporalTypeReference">
|
1292
|
+
<summary>Represents a reference to an EDM temporal (Time, DateTime, DateTimeOffset) type.</summary>
|
1293
|
+
</member>
|
1294
|
+
<member name="P:Microsoft.Data.Edm.IEdmTemporalTypeReference.Precision">
|
1295
|
+
<summary>Gets the precision of this temporal type.</summary>
|
1296
|
+
<returns>The precision of this temporal type.</returns>
|
1297
|
+
</member>
|
1298
|
+
<member name="T:Microsoft.Data.Edm.IEdmTerm">
|
1299
|
+
<summary>Represents the term to which an annotation can bind.</summary>
|
1300
|
+
</member>
|
1301
|
+
<member name="P:Microsoft.Data.Edm.IEdmTerm.NamespaceUri">
|
1302
|
+
<summary>Gets the namespace of this term.</summary>
|
1303
|
+
<returns>The namespace of this term.</returns>
|
1304
|
+
</member>
|
1305
|
+
<member name="P:Microsoft.Data.Edm.IEdmTerm.TermKind">
|
1306
|
+
<summary>Gets the kind of a term.</summary>
|
1307
|
+
<returns>The kind of a term.</returns>
|
1308
|
+
</member>
|
1309
|
+
<member name="T:Microsoft.Data.Edm.IEdmType">
|
1310
|
+
<summary>Represents the definition of an EDM type.</summary>
|
1311
|
+
</member>
|
1312
|
+
<member name="P:Microsoft.Data.Edm.IEdmType.TypeKind">
|
1313
|
+
<summary>Gets the kind of this type.</summary>
|
1314
|
+
<returns>The kind of this type.</returns>
|
1315
|
+
</member>
|
1316
|
+
<member name="T:Microsoft.Data.Edm.IEdmTypeReference">
|
1317
|
+
<summary>Represents a reference to an EDM type.</summary>
|
1318
|
+
</member>
|
1319
|
+
<member name="P:Microsoft.Data.Edm.IEdmTypeReference.Definition">
|
1320
|
+
<summary>Gets the definition to which this type refers.</summary>
|
1321
|
+
<returns>The definition to which this type refers.</returns>
|
1322
|
+
</member>
|
1323
|
+
<member name="P:Microsoft.Data.Edm.IEdmTypeReference.IsNullable">
|
1324
|
+
<summary>Gets a value indicating whether this type is nullable.</summary>
|
1325
|
+
<returns>true of the type is nullable; otherwise, false.</returns>
|
1326
|
+
</member>
|
1327
|
+
<member name="T:Microsoft.Data.Edm.IEdmValue">
|
1328
|
+
<summary>Represents an EDM value.</summary>
|
1329
|
+
</member>
|
1330
|
+
<member name="P:Microsoft.Data.Edm.IEdmValue.Type">
|
1331
|
+
<summary>Gets the type of this value.</summary>
|
1332
|
+
<returns>The type of this value.</returns>
|
1333
|
+
</member>
|
1334
|
+
<member name="T:Microsoft.Data.Edm.IEdmValueTerm">
|
1335
|
+
<summary>Represents an EDM value term.</summary>
|
1336
|
+
</member>
|
1337
|
+
<member name="P:Microsoft.Data.Edm.IEdmValueTerm.Type">
|
1338
|
+
<summary>Gets the type of the term.</summary>
|
1339
|
+
<returns>The type of the term.</returns>
|
1340
|
+
</member>
|
1341
|
+
<member name="T:Microsoft.Data.Edm.Annotations.EdmAnnotationKind">
|
1342
|
+
<summary> Defines EDM annotation kinds. </summary>
|
1343
|
+
</member>
|
1344
|
+
<member name="F:Microsoft.Data.Edm.Annotations.EdmAnnotationKind.None">
|
1345
|
+
<summary> Represents an annotation with unknown or error kind. </summary>
|
1346
|
+
</member>
|
1347
|
+
<member name="F:Microsoft.Data.Edm.Annotations.EdmAnnotationKind.ImmediateValue">
|
1348
|
+
<summary> Represents an annotation implementing <see cref="T:Microsoft.Data.Edm.Annotations.IEdmImmediateValueAnnotation" />. </summary>
|
1349
|
+
</member>
|
1350
|
+
<member name="F:Microsoft.Data.Edm.Annotations.EdmAnnotationKind.TermType">
|
1351
|
+
<summary> Represents an annotation implementing <see cref="T:Microsoft.Data.Edm.Annotations.IEdmTypeAnnotation" />. </summary>
|
1352
|
+
</member>
|
1353
|
+
<member name="F:Microsoft.Data.Edm.Annotations.EdmAnnotationKind.TermValue">
|
1354
|
+
<summary> Represents an annotation implementing <see cref="T:Microsoft.Data.Edm.Annotations.IEdmValueAnnotation" />. </summary>
|
1355
|
+
</member>
|
1356
|
+
<member name="T:Microsoft.Data.Edm.Annotations.IEdmAnnotation">
|
1357
|
+
<summary> Represents an EDM annotation. </summary>
|
1358
|
+
</member>
|
1359
|
+
<member name="P:Microsoft.Data.Edm.Annotations.IEdmAnnotation.AnnotationKind">
|
1360
|
+
<summary> Gets the kind of an annotation. </summary>
|
1361
|
+
</member>
|
1362
|
+
<member name="P:Microsoft.Data.Edm.Annotations.IEdmAnnotation.Term">
|
1363
|
+
<summary> Gets the term bound by the annotation. </summary>
|
1364
|
+
</member>
|
1365
|
+
<member name="T:Microsoft.Data.Edm.Annotations.IEdmImmediateValueAnnotation">
|
1366
|
+
<summary> Represents an EDM annotation with an immediate value. </summary>
|
1367
|
+
</member>
|
1368
|
+
<member name="P:Microsoft.Data.Edm.Annotations.IEdmImmediateValueAnnotation.Value">
|
1369
|
+
<summary> Gets the value of this annotation. </summary>
|
1370
|
+
</member>
|
1371
|
+
<member name="T:Microsoft.Data.Edm.Annotations.IEdmPropertyValueBinding">
|
1372
|
+
<summary> Represents a property binding specified as part of an EDM Type Annotation. </summary>
|
1373
|
+
</member>
|
1374
|
+
<member name="P:Microsoft.Data.Edm.Annotations.IEdmPropertyValueBinding.BoundProperty">
|
1375
|
+
<summary> Gets the property given a value by the annotation. </summary>
|
1376
|
+
</member>
|
1377
|
+
<member name="P:Microsoft.Data.Edm.Annotations.IEdmPropertyValueBinding.Value">
|
1378
|
+
<summary> Gets the expression producing the value of the annotation. </summary>
|
1379
|
+
</member>
|
1380
|
+
<member name="T:Microsoft.Data.Edm.Annotations.IEdmTypeAnnotation">
|
1381
|
+
<summary> Represents an EDM Type Annotation. </summary>
|
1382
|
+
</member>
|
1383
|
+
<member name="P:Microsoft.Data.Edm.Annotations.IEdmTypeAnnotation.Properties">
|
1384
|
+
<summary> Gets the value annotations for the properties of the type. </summary>
|
1385
|
+
</member>
|
1386
|
+
<member name="T:Microsoft.Data.Edm.Annotations.IEdmValueAnnotation">
|
1387
|
+
<summary> Represents an EDM Value Annotation. </summary>
|
1388
|
+
</member>
|
1389
|
+
<member name="P:Microsoft.Data.Edm.Annotations.IEdmValueAnnotation.Value">
|
1390
|
+
<summary> Gets the expression producing the value of the annotation. </summary>
|
1391
|
+
</member>
|
1392
|
+
<member name="T:Microsoft.Data.Edm.Annotations.IEdmVocabularyAnnotation">
|
1393
|
+
<summary> Represents an EDM Vocabulary Annotation. </summary>
|
1394
|
+
</member>
|
1395
|
+
<member name="P:Microsoft.Data.Edm.Annotations.IEdmVocabularyAnnotation.Qualifier">
|
1396
|
+
<summary> Gets the qualifier used to discriminate between multiple bindings of the same property or type. </summary>
|
1397
|
+
</member>
|
1398
|
+
<member name="P:Microsoft.Data.Edm.Annotations.IEdmVocabularyAnnotation.Target">
|
1399
|
+
<summary> Gets the element the annotation applies to. </summary>
|
1400
|
+
</member>
|
1401
|
+
<member name="T:Microsoft.Data.Edm.Csdl.CsdlConstants">
|
1402
|
+
<summary> Constants for CSDL XML. </summary>
|
1403
|
+
</member>
|
1404
|
+
<member name="F:Microsoft.Data.Edm.Csdl.CsdlConstants.EdmxVersion1">
|
1405
|
+
<summary> Version 1.0 of EDMX. Corresponds to EDMX namespace "http://schemas.microsoft.com/ado/2007/06/edmx". </summary>
|
1406
|
+
</member>
|
1407
|
+
<member name="F:Microsoft.Data.Edm.Csdl.CsdlConstants.EdmxVersion2">
|
1408
|
+
<summary> Version 2.0 of EDMX. Corresponds to EDMX namespace "http://schemas.microsoft.com/ado/2008/10/edmx". </summary>
|
1409
|
+
</member>
|
1410
|
+
<member name="F:Microsoft.Data.Edm.Csdl.CsdlConstants.EdmxVersion3">
|
1411
|
+
<summary> Version 3.0 of EDMX. Corresponds to EDMX namespace "http://schemas.microsoft.com/ado/2009/11/edmx". </summary>
|
1412
|
+
</member>
|
1413
|
+
<member name="F:Microsoft.Data.Edm.Csdl.CsdlConstants.EdmxVersionLatest">
|
1414
|
+
<summary> The current latest version of EDMX. </summary>
|
1415
|
+
</member>
|
1416
|
+
<member name="T:Microsoft.Data.Edm.Csdl.CsdlLocation">
|
1417
|
+
<summary> Defines a location in a XML file. </summary>
|
1418
|
+
</member>
|
1419
|
+
<member name="P:Microsoft.Data.Edm.Csdl.CsdlLocation.LineNumber">
|
1420
|
+
<summary> Gets the line number in the file. </summary>
|
1421
|
+
</member>
|
1422
|
+
<member name="P:Microsoft.Data.Edm.Csdl.CsdlLocation.LinePosition">
|
1423
|
+
<summary> Gets the position in the line. </summary>
|
1424
|
+
</member>
|
1425
|
+
<member name="M:Microsoft.Data.Edm.Csdl.CsdlLocation.ToString">
|
1426
|
+
<summary> Gets a string representation of the location. </summary>
|
1427
|
+
<returns>A string representation of the location.</returns>
|
1428
|
+
</member>
|
1429
|
+
<member name="T:Microsoft.Data.Edm.Csdl.CsdlReader">
|
1430
|
+
<summary> Provides CSDL parsing services for EDM models. </summary>
|
1431
|
+
</member>
|
1432
|
+
<member name="M:Microsoft.Data.Edm.Csdl.CsdlReader.TryParse(System.Collections.Generic.IEnumerable{System.Xml.XmlReader},Microsoft.Data.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.Validation.EdmError}@,Microsoft.Data.Edm.IEdmModel[])">
|
1433
|
+
<summary> Returns an IEdmModel for the given CSDL artifacts. </summary>
|
1434
|
+
<returns>Success of the parse operation.</returns>
|
1435
|
+
<param name="readers">Collection of XmlReaders containing the CSDL artifacts.</param>
|
1436
|
+
<param name="model">The model generated by parsing.</param>
|
1437
|
+
<param name="errors">Errors reported while parsing.</param>
|
1438
|
+
<param name="references">Models to be references by the created model.</param>
|
1439
|
+
</member>
|
1440
|
+
<member name="M:Microsoft.Data.Edm.Csdl.CsdlReader.TryParse(System.Collections.Generic.IEnumerable{System.Xml.XmlReader},System.Boolean,Microsoft.Data.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.Validation.EdmError}@,Microsoft.Data.Edm.IEdmModel[])">
|
1441
|
+
<summary> Returns an IEdmModel for the given CSDL artifacts. </summary>
|
1442
|
+
<returns>Success of the parse operation.</returns>
|
1443
|
+
<param name="readers">Collection of XmlReaders containing the CSDL artifacts.</param>
|
1444
|
+
<param name="allowRemovingImmutableAnnotations">A flag denoting whether the resulting IEdmModel will allow the removal of immutable CSDL annotations.</param>
|
1445
|
+
<param name="model">The model generated by parsing.</param>
|
1446
|
+
<param name="errors">Errors reported while parsing.</param>
|
1447
|
+
<param name="references">Models to be references by the created model.</param>
|
1448
|
+
</member>
|
1449
|
+
<member name="T:Microsoft.Data.Edm.Csdl.CsdlWriter">
|
1450
|
+
<summary> Provides CSDL serialization services for EDM models. </summary>
|
1451
|
+
</member>
|
1452
|
+
<member name="M:Microsoft.Data.Edm.Csdl.CsdlWriter.WriteCsdl(Microsoft.Data.Edm.IEdmModel,System.Func`2)"></member>
|
1453
|
+
<member name="M:Microsoft.Data.Edm.Csdl.CsdlWriter.WriteCsdl(Microsoft.Data.Edm.IEdmModel,System.Xml.XmlWriter)">
|
1454
|
+
<summary> Outputs a CSDL artifact to the provided writer. </summary>
|
1455
|
+
<param name="model">Model to be written.</param>
|
1456
|
+
<param name="writer">XmlWriter the generated CSDL will be written to.</param>
|
1457
|
+
</member>
|
1458
|
+
<member name="T:Microsoft.Data.Edm.Csdl.EdmVocabularyAnnotationSerializationLocation">
|
1459
|
+
<summary> Represents whether a vocabulary annotation should be serialized within the element it applies to or in a seperate section of the CSDL. </summary>
|
1460
|
+
</member>
|
1461
|
+
<member name="F:Microsoft.Data.Edm.Csdl.EdmVocabularyAnnotationSerializationLocation.Inline">
|
1462
|
+
<summary> The annotation should be serialized within the element being annotated. </summary>
|
1463
|
+
</member>
|
1464
|
+
<member name="F:Microsoft.Data.Edm.Csdl.EdmVocabularyAnnotationSerializationLocation.OutOfLine">
|
1465
|
+
<summary> The annotation should be serialized in a seperate section. </summary>
|
1466
|
+
</member>
|
1467
|
+
<member name="T:Microsoft.Data.Edm.Csdl.EdmxReader">
|
1468
|
+
<summary> Provides EDMX parsing services for EDM models. </summary>
|
1469
|
+
</member>
|
1470
|
+
<member name="M:Microsoft.Data.Edm.Csdl.EdmxReader.TryParse(System.Xml.XmlReader,Microsoft.Data.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.Validation.EdmError}@)">
|
1471
|
+
<summary> Returns an IEdmModel for the given EDMX artifact. </summary>
|
1472
|
+
<returns>Success of the parse operation.</returns>
|
1473
|
+
<param name="reader">XmlReader containing the EDMX artifact.</param>
|
1474
|
+
<param name="model">The model generated by parsing</param>
|
1475
|
+
<param name="errors">Errors reported while parsing.</param>
|
1476
|
+
</member>
|
1477
|
+
<member name="M:Microsoft.Data.Edm.Csdl.EdmxReader.TryParse(System.Xml.XmlReader,System.Boolean,Microsoft.Data.Edm.IEdmModel@,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.Validation.EdmError}@)">
|
1478
|
+
<summary> Returns an IEdmModel for the given EDMX artifact. </summary>
|
1479
|
+
<returns>Success of the parse operation.</returns>
|
1480
|
+
<param name="reader">XmlReader containing the EDMX artifact.</param>
|
1481
|
+
<param name="allowRemovingImmutableAnnotations">A flag denoting whether the resulting IEdmModel will allow the removal of immutable CSDL annotations.</param>
|
1482
|
+
<param name="model">The model generated by parsing</param>
|
1483
|
+
<param name="errors">Errors reported while parsing.</param>
|
1484
|
+
</member>
|
1485
|
+
<member name="T:Microsoft.Data.Edm.Csdl.EdmxTarget">
|
1486
|
+
<summary> Specifies what target of an EDMX file. </summary>
|
1487
|
+
</member>
|
1488
|
+
<member name="F:Microsoft.Data.Edm.Csdl.EdmxTarget.EntityFramework">
|
1489
|
+
<summary> The target is Entity Framework. </summary>
|
1490
|
+
</member>
|
1491
|
+
<member name="F:Microsoft.Data.Edm.Csdl.EdmxTarget.OData">
|
1492
|
+
<summary> The target is OData. </summary>
|
1493
|
+
</member>
|
1494
|
+
<member name="T:Microsoft.Data.Edm.Csdl.EdmxWriter">
|
1495
|
+
<summary> Provides EDMX serialization services for EDM models. </summary>
|
1496
|
+
</member>
|
1497
|
+
<member name="M:Microsoft.Data.Edm.Csdl.EdmxWriter.WriteEdmx(Microsoft.Data.Edm.IEdmModel,System.Xml.XmlWriter,Microsoft.Data.Edm.Csdl.EdmxTarget)">
|
1498
|
+
<summary> Outputs an EDMX artifact to the provided XmlWriter. </summary>
|
1499
|
+
<param name="model">Model to be written.</param>
|
1500
|
+
<param name="writer">XmlWriter the generated EDMX will be written to.</param>
|
1501
|
+
<param name="target">Target implementation of the EDMX being generated.</param>
|
1502
|
+
</member>
|
1503
|
+
<member name="T:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods">
|
1504
|
+
<summary> Contains extension methods for <see cref="T:Microsoft.Data.Edm.IEdmModel" /> interfaces that are useful to serialization. </summary>
|
1505
|
+
</member>
|
1506
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.GetDataServiceVersion(Microsoft.Data.Edm.IEdmModel)">
|
1507
|
+
<summary> Gets the value for the DataServiceVersion attribute used during EDMX serialization. </summary>
|
1508
|
+
<returns>Value of the attribute.</returns>
|
1509
|
+
<param name="model">Model the attribute has been set for.</param>
|
1510
|
+
</member>
|
1511
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.GetEdmxVersion(Microsoft.Data.Edm.IEdmModel)">
|
1512
|
+
<summary> Gets the value for the EDMX version of the model. </summary>
|
1513
|
+
<returns>The version.</returns>
|
1514
|
+
<param name="model">Model the version has been set for.</param>
|
1515
|
+
</member>
|
1516
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.GetIsValueExplicit(Microsoft.Data.Edm.IEdmEnumMember)">
|
1517
|
+
<summary> Gets an annotation indicating whether the value of an enum member should be explicitly serialized. </summary>
|
1518
|
+
<returns>Whether the member should have its value serialized.</returns>
|
1519
|
+
<param name="member">The member the annotation is on.</param>
|
1520
|
+
</member>
|
1521
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.GetMaxDataServiceVersion(Microsoft.Data.Edm.IEdmModel)">
|
1522
|
+
<summary> Gets the value for the MaxDataServiceVersion attribute used during EDMX serialization. </summary>
|
1523
|
+
<returns>Value of the attribute.</returns>
|
1524
|
+
<param name="model">Model the attribute has been set for</param>
|
1525
|
+
</member>
|
1526
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.GetNamespacePrefixMappings(Microsoft.Data.Edm.IEdmModel)">
|
1527
|
+
<summary> Gets the preferred prefix mappings for xml namespaces from an IEdmModel </summary>
|
1528
|
+
<returns>Namespace prefixes that exist on the model.</returns>
|
1529
|
+
<param name="model">Reference to the calling object.</param>
|
1530
|
+
</member>
|
1531
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.GetSchemaNamespace(Microsoft.Data.Edm.Annotations.IEdmVocabularyAnnotation)">
|
1532
|
+
<summary> Gets the schema an annotation should be serialized in. </summary>
|
1533
|
+
<returns>Name of the schema the annotation belongs to.</returns>
|
1534
|
+
<param name="annotation">Reference to the calling annotation.</param>
|
1535
|
+
</member>
|
1536
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.GetSchemaNamespace(Microsoft.Data.Edm.IEdmEntityContainer)">
|
1537
|
+
<summary> Gets the namespace name of a CSDL schema hosting the container during CSDL serialization. </summary>
|
1538
|
+
<returns>The schema namespace.</returns>
|
1539
|
+
<param name="container">Entity container the namespace has been set for.</param>
|
1540
|
+
</member>
|
1541
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.GetSerializationLocation(Microsoft.Data.Edm.Annotations.IEdmVocabularyAnnotation)">
|
1542
|
+
<summary> Gets the location an annotation should be serialized in. </summary>
|
1543
|
+
<returns>The location the annotation should be serialized at.</returns>
|
1544
|
+
<param name="annotation">Reference to the calling annotation.</param>
|
1545
|
+
</member>
|
1546
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.SetDataServiceVersion(Microsoft.Data.Edm.IEdmModel,System.Version)">
|
1547
|
+
<summary> Sets a value for the DataServiceVersion attribute in an EDMX artifact. </summary>
|
1548
|
+
<param name="model">The model the attribute should be set for.</param>
|
1549
|
+
<param name="version">The value of the attribute.</param>
|
1550
|
+
</member>
|
1551
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.SetEdmxVersion(Microsoft.Data.Edm.IEdmModel,System.Version)">
|
1552
|
+
<summary> Sets a value of EDMX version attribute of the model. </summary>
|
1553
|
+
<param name="model">The model the version should be set for.</param>
|
1554
|
+
<param name="version">The version.</param>
|
1555
|
+
</member>
|
1556
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.SetIsValueExplicit(Microsoft.Data.Edm.IEdmEnumMember,System.Nullable{System.Boolean})">
|
1557
|
+
<summary> Sets an annotation indicating whether the value of an enum member should be explicitly serialized. </summary>
|
1558
|
+
<param name="member">Member to set the annotation on.</param>
|
1559
|
+
<param name="isExplicit">If the value of the enum member should be explicitly serialized</param>
|
1560
|
+
</member>
|
1561
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.SetMaxDataServiceVersion(Microsoft.Data.Edm.IEdmModel,System.Version)">
|
1562
|
+
<summary> Sets a value for the MaxDataServiceVersion attribute in an EDMX artifact. </summary>
|
1563
|
+
<param name="model">The model the attribute should be set for.</param>
|
1564
|
+
<param name="version">The value of the attribute.</param>
|
1565
|
+
</member>
|
1566
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.SetNamespacePrefixMappings(Microsoft.Data.Edm.IEdmModel,System.Xml.XmlNamespaceManager)">
|
1567
|
+
<summary> Sets an annotation on the IEdmModel to notify the serializer of preferred prefix mappings for xml namespaces. </summary>
|
1568
|
+
<param name="model">Reference to the calling object.</param>
|
1569
|
+
<param name="mappings">XmlNamespaceManage containing mappings between namespace prefixes and xml namespaces.</param>
|
1570
|
+
</member>
|
1571
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.SetSchemaNamespace(Microsoft.Data.Edm.Annotations.IEdmVocabularyAnnotation,System.String)">
|
1572
|
+
<summary> Sets the schema an annotation should appear in. </summary>
|
1573
|
+
<param name="annotation">The annotation the schema should be set for.</param>
|
1574
|
+
<param name="location">The schema the annotation belongs in.</param>
|
1575
|
+
</member>
|
1576
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.SetSchemaNamespace(Microsoft.Data.Edm.IEdmEntityContainer,System.String)">
|
1577
|
+
<summary> Sets the namespace name of a CSDL schema hosting the container during CSDL serialization. </summary>
|
1578
|
+
<param name="container">The entity container the namespace should be set for.</param>
|
1579
|
+
<param name="schemaNamespace">The schema namespace.</param>
|
1580
|
+
</member>
|
1581
|
+
<member name="M:Microsoft.Data.Edm.Csdl.SerializationExtensionMethods.SetSerializationLocation(Microsoft.Data.Edm.Annotations.IEdmVocabularyAnnotation,System.Nullable{Microsoft.Data.Edm.Csdl.EdmVocabularyAnnotationSerializationLocation})">
|
1582
|
+
<summary> Sets the location an annotation should be serialized in. </summary>
|
1583
|
+
<param name="annotation">The annotation the location is being specified for.</param>
|
1584
|
+
<param name="location">The location the annotation should appear.</param>
|
1585
|
+
</member>
|
1586
|
+
<member name="T:Microsoft.Data.Edm.Expressions.EdmExpressionKind">
|
1587
|
+
<summary> Defines EDM expression kinds. </summary>
|
1588
|
+
</member>
|
1589
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.None">
|
1590
|
+
<summary> Represents an expression with unknown or error kind. </summary>
|
1591
|
+
</member>
|
1592
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.StringConstant">
|
1593
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmStringConstantExpression" />. </summary>
|
1594
|
+
</member>
|
1595
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.IntegerConstant">
|
1596
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmIntegerConstantExpression" />. </summary>
|
1597
|
+
</member>
|
1598
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.FloatingConstant">
|
1599
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmFloatingConstantExpression" />. </summary>
|
1600
|
+
</member>
|
1601
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.DecimalConstant">
|
1602
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmDecimalConstantExpression" />. </summary>
|
1603
|
+
</member>
|
1604
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.BooleanConstant">
|
1605
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmBooleanConstantExpression" />. </summary>
|
1606
|
+
</member>
|
1607
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.DateTimeConstant">
|
1608
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmDateTimeConstantExpression" />. </summary>
|
1609
|
+
</member>
|
1610
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.Record">
|
1611
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmRecordExpression" />. </summary>
|
1612
|
+
</member>
|
1613
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.Collection">
|
1614
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmCollectionExpression" />. </summary>
|
1615
|
+
</member>
|
1616
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.Path">
|
1617
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmPathExpression" />. </summary>
|
1618
|
+
</member>
|
1619
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.ParameterReference">
|
1620
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmParameterReferenceExpression" />. </summary>
|
1621
|
+
</member>
|
1622
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.FunctionReference">
|
1623
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmFunctionReferenceExpression" />. </summary>
|
1624
|
+
</member>
|
1625
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.PropertyReference">
|
1626
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmPropertyReferenceExpression" />. </summary>
|
1627
|
+
</member>
|
1628
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.TermPropertyReference">
|
1629
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmValueTermReferenceExpression" />. </summary>
|
1630
|
+
</member>
|
1631
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.EntitySetReference">
|
1632
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmEntitySetReferenceExpression" />. </summary>
|
1633
|
+
</member>
|
1634
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.EnumConstantReference">
|
1635
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmEnumConstantReferenceExpression" />. </summary>
|
1636
|
+
</member>
|
1637
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.If">
|
1638
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmIfExpression" />. </summary>
|
1639
|
+
</member>
|
1640
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.AssertType">
|
1641
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmAssertTypeExpression" />. </summary>
|
1642
|
+
</member>
|
1643
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.IsType">
|
1644
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmIsTypeExpression" />. </summary>
|
1645
|
+
</member>
|
1646
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.AnonymousFunction">
|
1647
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmAnonymousFunctionExpression" />. </summary>
|
1648
|
+
</member>
|
1649
|
+
<member name="F:Microsoft.Data.Edm.Expressions.EdmExpressionKind.FunctionApplication">
|
1650
|
+
<summary> Represents an expression implementing <see cref="T:Microsoft.Data.Edm.Expressions.IEdmFunctionApplicationExpression" />. </summary>
|
1651
|
+
</member>
|
1652
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmAnonymousFunctionExpression">
|
1653
|
+
<summary> Represents an EDM anonymous function expression. </summary>
|
1654
|
+
</member>
|
1655
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmAnonymousFunctionExpression.Body">
|
1656
|
+
<summary> Gets the function body. </summary>
|
1657
|
+
</member>
|
1658
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmAnonymousFunctionExpression.Parameters">
|
1659
|
+
<summary> Gets the parameters of the function. </summary>
|
1660
|
+
</member>
|
1661
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmAssertTypeExpression">
|
1662
|
+
<summary> Represents an EDM type assertion expression. </summary>
|
1663
|
+
</member>
|
1664
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmAssertTypeExpression.Operand">
|
1665
|
+
<summary> Gets the expression for which the type is asserted. </summary>
|
1666
|
+
</member>
|
1667
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmAssertTypeExpression.Type">
|
1668
|
+
<summary> Gets the asserted type. </summary>
|
1669
|
+
</member>
|
1670
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmBooleanConstantExpression">
|
1671
|
+
<summary> Represents an EDM boolean constant expression. </summary>
|
1672
|
+
</member>
|
1673
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmBooleanConstantExpression.Value">
|
1674
|
+
<summary> Gets a value indicating whether the boolean value is true or false. </summary>
|
1675
|
+
</member>
|
1676
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmCollectionExpression">
|
1677
|
+
<summary> Represents an EDM multi-value construction expression. </summary>
|
1678
|
+
</member>
|
1679
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmCollectionExpression.Elements">
|
1680
|
+
<summary> Gets the constructed element values. </summary>
|
1681
|
+
</member>
|
1682
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmDateTimeConstantExpression">
|
1683
|
+
<summary> Represents an EDM DateTime constant expression. </summary>
|
1684
|
+
</member>
|
1685
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmDateTimeConstantExpression.Value">
|
1686
|
+
<summary> Gets the DateTime value. </summary>
|
1687
|
+
</member>
|
1688
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmDecimalConstantExpression">
|
1689
|
+
<summary> Represents an EDM decimal constant expression. </summary>
|
1690
|
+
</member>
|
1691
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmDecimalConstantExpression.Value">
|
1692
|
+
<summary> Gets the decimal value. </summary>
|
1693
|
+
</member>
|
1694
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmEntitySetReferenceExpression">
|
1695
|
+
<summary> Represents an EDM entity set reference expression. </summary>
|
1696
|
+
</member>
|
1697
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmEntitySetReferenceExpression.Referenced">
|
1698
|
+
<summary> Gets the referenced entity set. </summary>
|
1699
|
+
</member>
|
1700
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmEnumConstantReferenceExpression"></member>
|
1701
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmExpression">
|
1702
|
+
<summary> Represents an EDM expression. </summary>
|
1703
|
+
</member>
|
1704
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmExpression.ExpressionKind">
|
1705
|
+
<summary> Gets the kind of this expression. </summary>
|
1706
|
+
</member>
|
1707
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmFloatingConstantExpression">
|
1708
|
+
<summary> Represents an EDM floating constant expression. </summary>
|
1709
|
+
</member>
|
1710
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmFloatingConstantExpression.Value">
|
1711
|
+
<summary> Gets the floating value. </summary>
|
1712
|
+
</member>
|
1713
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmFunctionApplicationExpression">
|
1714
|
+
<summary> Represents an EDM function application expression. </summary>
|
1715
|
+
</member>
|
1716
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmFunctionApplicationExpression.AppliedFunction">
|
1717
|
+
<summary> Gets the applied function. </summary>
|
1718
|
+
</member>
|
1719
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmFunctionApplicationExpression.Arguments">
|
1720
|
+
<summary> Gets the arguments to the function. </summary>
|
1721
|
+
</member>
|
1722
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmFunctionReferenceExpression">
|
1723
|
+
<summary> Represents an EDM function reference expression. </summary>
|
1724
|
+
</member>
|
1725
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmFunctionReferenceExpression.ReferencedFunction">
|
1726
|
+
<summary> Gets the referenced function. </summary>
|
1727
|
+
</member>
|
1728
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmIfExpression">
|
1729
|
+
<summary> Represents an EDM if expression. </summary>
|
1730
|
+
</member>
|
1731
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmIfExpression.IfFalse">
|
1732
|
+
<summary> Gets the expression to evaluate if Test evaluates to False. </summary>
|
1733
|
+
</member>
|
1734
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmIfExpression.IfTrue">
|
1735
|
+
<summary> Gets the expression to evaluate if Test evaluates to True. </summary>
|
1736
|
+
</member>
|
1737
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmIfExpression.Test">
|
1738
|
+
<summary> Gets the test expression. </summary>
|
1739
|
+
</member>
|
1740
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmIntegerConstantExpression">
|
1741
|
+
<summary> Represents an EDM integer constant expression. </summary>
|
1742
|
+
</member>
|
1743
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmIntegerConstantExpression.Value">
|
1744
|
+
<summary> Gets the integral value. </summary>
|
1745
|
+
</member>
|
1746
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmIsTypeExpression">
|
1747
|
+
<summary> Represents an EDM type test expression. </summary>
|
1748
|
+
</member>
|
1749
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmIsTypeExpression.Operand">
|
1750
|
+
<summary> Gets the expression whose type is to be tested. </summary>
|
1751
|
+
</member>
|
1752
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmIsTypeExpression.Type">
|
1753
|
+
<summary> Gets the type to be tested against. </summary>
|
1754
|
+
</member>
|
1755
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmLabeledElement">
|
1756
|
+
<summary> Represents an EDM labeled multi value element. </summary>
|
1757
|
+
</member>
|
1758
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmLabeledElement.Expression">
|
1759
|
+
<summary> Gets the underlying expression. </summary>
|
1760
|
+
</member>
|
1761
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmLabeledElement.Label">
|
1762
|
+
<summary> Gets the label. </summary>
|
1763
|
+
</member>
|
1764
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmParameterReferenceExpression">
|
1765
|
+
<summary> Represents an EDM parameter reference expression. </summary>
|
1766
|
+
</member>
|
1767
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmParameterReferenceExpression.Parameter">
|
1768
|
+
<summary> Gets the referenced parameter. </summary>
|
1769
|
+
</member>
|
1770
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmPathExpression">
|
1771
|
+
<summary> Represents an EDM path expression. </summary>
|
1772
|
+
</member>
|
1773
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmPathExpression.Path">
|
1774
|
+
<summary> Gets the path as a decomposed qualified name. "A.B.C" is { "A", "B", "C" }. </summary>
|
1775
|
+
</member>
|
1776
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmPathExpression.Referenced">
|
1777
|
+
<summary> Gets the referenced element. </summary>
|
1778
|
+
</member>
|
1779
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmPropertyConstructor">
|
1780
|
+
<summary> Represents an EDM property constructor specified as part of a CSDL Record expression. </summary>
|
1781
|
+
</member>
|
1782
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmPropertyConstructor.Name">
|
1783
|
+
<summary> Gets the name of the property </summary>
|
1784
|
+
</member>
|
1785
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmPropertyConstructor.Value">
|
1786
|
+
<summary> Gets the expression for the value of the property. </summary>
|
1787
|
+
</member>
|
1788
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmPropertyReferenceExpression">
|
1789
|
+
<summary> Represents an EDM property reference expression. </summary>
|
1790
|
+
</member>
|
1791
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmPropertyReferenceExpression.Base">
|
1792
|
+
<summary> Gets the expression for the structured value containing the referenced property. </summary>
|
1793
|
+
</member>
|
1794
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmPropertyReferenceExpression.ReferencedProperty">
|
1795
|
+
<summary> Gets the referenced property. </summary>
|
1796
|
+
</member>
|
1797
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmRecordExpression">
|
1798
|
+
<summary> Represents an EDM record construction expression. </summary>
|
1799
|
+
</member>
|
1800
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmRecordExpression.DeclaredType">
|
1801
|
+
<summary> Gets the declared type of the record, or null if there is no declared type. </summary>
|
1802
|
+
</member>
|
1803
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmRecordExpression.Properties">
|
1804
|
+
<summary> Gets the constructed property values. </summary>
|
1805
|
+
</member>
|
1806
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmStringConstantExpression">
|
1807
|
+
<summary> Represents an EDM string constant expression. </summary>
|
1808
|
+
</member>
|
1809
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmStringConstantExpression.Value">
|
1810
|
+
<summary> Gets the string value. </summary>
|
1811
|
+
</member>
|
1812
|
+
<member name="T:Microsoft.Data.Edm.Expressions.IEdmValueTermReferenceExpression">
|
1813
|
+
<summary> Represents an EDM value term reference expression. </summary>
|
1814
|
+
</member>
|
1815
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmValueTermReferenceExpression.Base">
|
1816
|
+
<summary> Gets the expression for the structured value containing the referenced term property. </summary>
|
1817
|
+
</member>
|
1818
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmValueTermReferenceExpression.Qualifier">
|
1819
|
+
<summary> Gets the optional qualifier. </summary>
|
1820
|
+
</member>
|
1821
|
+
<member name="P:Microsoft.Data.Edm.Expressions.IEdmValueTermReferenceExpression.Term">
|
1822
|
+
<summary> Gets the referenced value term. </summary>
|
1823
|
+
</member>
|
1824
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmBinaryTypeReference">
|
1825
|
+
<summary> Represents a reference to an EDM binary type. </summary>
|
1826
|
+
</member>
|
1827
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmBinaryTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean)">
|
1828
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmBinaryTypeReference" /> class. </summary>
|
1829
|
+
<param name="definition">The type this reference refers to.</param>
|
1830
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
1831
|
+
</member>
|
1832
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmBinaryTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Boolean})">
|
1833
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmBinaryTypeReference" /> class. </summary>
|
1834
|
+
<param name="definition">The type this reference refers to.</param>
|
1835
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
1836
|
+
<param name="isMaxMaxLength">Denotes whether the maximum length is the maximum allowed value.</param>
|
1837
|
+
<param name="maxLength">The maximum length of a value of this type.</param>
|
1838
|
+
<param name="isFixedLength">Denotes whether the length can vary. </param>
|
1839
|
+
</member>
|
1840
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmBinaryTypeReference.IsFixedLength">
|
1841
|
+
<summary> Gets a value indicating whether this type specifies fixed length. </summary>
|
1842
|
+
<returns>true if this type specifies fixed length; otherwise, false.</returns>
|
1843
|
+
</member>
|
1844
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmBinaryTypeReference.IsMaxMaxLength">
|
1845
|
+
<summary> Gets a value indicating whether this type specifies the maximum allowed max length. </summary>
|
1846
|
+
<returns>true if this type specifies the maximum allowed maximum length; otherwise, false.</returns>
|
1847
|
+
</member>
|
1848
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmBinaryTypeReference.MaxLength">
|
1849
|
+
<summary> Gets the maximum length of this type. </summary>
|
1850
|
+
<returns>The maximum length of this type.</returns>
|
1851
|
+
</member>
|
1852
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmBinaryValue">
|
1853
|
+
<summary> Represents an EDM integer value. </summary>
|
1854
|
+
</member>
|
1855
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmBinaryValue.#ctor(Microsoft.Data.Edm.IEdmBinaryTypeReference,System.Byte[])">
|
1856
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmBinaryValue" /> class. </summary>
|
1857
|
+
<param name="type">The type of the value.</param>
|
1858
|
+
<param name="value">The data represented by this value.</param>
|
1859
|
+
</member>
|
1860
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmBinaryValue.Value">
|
1861
|
+
<summary> Gets the definition of this value. </summary>
|
1862
|
+
<returns>The definition of this value.</returns>
|
1863
|
+
</member>
|
1864
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmBooleanValue">
|
1865
|
+
<summary> Represents an EDM boolean value. </summary>
|
1866
|
+
</member>
|
1867
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmBooleanValue.#ctor(Microsoft.Data.Edm.IEdmPrimitiveTypeReference,System.Boolean)">
|
1868
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmBooleanValue" /> class. </summary>
|
1869
|
+
<param name="type">Type of the boolean.</param>
|
1870
|
+
<param name="value">Boolean value represented by this value.</param>
|
1871
|
+
</member>
|
1872
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmBooleanValue.Value">
|
1873
|
+
<summary> Gets a value indicating whether the value of this boolean value is true or false. </summary>
|
1874
|
+
<returns>A value indicating whether the value of this boolean value is true or false.</returns>
|
1875
|
+
</member>
|
1876
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmCollectionType">
|
1877
|
+
<summary> Represents a definition of an EDM collection type. </summary>
|
1878
|
+
</member>
|
1879
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCollectionType.#ctor(Microsoft.Data.Edm.IEdmTypeReference,System.Boolean)">
|
1880
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmCollectionType" /> class. </summary>
|
1881
|
+
<param name="elementType">The type of the elements in this collection.</param>
|
1882
|
+
<param name="isAtomic">A flag representing if the type should be atomic.</param>
|
1883
|
+
</member>
|
1884
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmCollectionType.ElementType">
|
1885
|
+
<summary> Gets the element type of this collection type. </summary>
|
1886
|
+
<returns>The element type of this collection type.</returns>
|
1887
|
+
</member>
|
1888
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmCollectionType.IsAtomic">
|
1889
|
+
<summary> Gets a value indicating whether a collection should be treated as an atomic unit. If true, the type will be serialized to a CSDL as MultiValue, if false it will be serialized as Collection </summary>
|
1890
|
+
<returns>true if a collection should be treated as an atomic unit; otherwise, false.</returns>
|
1891
|
+
</member>
|
1892
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmCollectionTypeReference">
|
1893
|
+
<summary> Represents a reference to an EDM collection type. </summary>
|
1894
|
+
</member>
|
1895
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCollectionTypeReference.#ctor(Microsoft.Data.Edm.IEdmCollectionType,System.Boolean)">
|
1896
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmCollectionTypeReference" /> class. </summary>
|
1897
|
+
<param name="collectionType">The type definition this reference refers to.</param>
|
1898
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
1899
|
+
</member>
|
1900
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmCollectionTypeReference.CollectionDefinition">
|
1901
|
+
<summary> Gets the collection type to which this type refers. </summary>
|
1902
|
+
<returns>The collection type to which this type refers.</returns>
|
1903
|
+
</member>
|
1904
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmCollectionValue">
|
1905
|
+
<summary> Represents an EDM collection value. </summary>
|
1906
|
+
</member>
|
1907
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCollectionValue.#ctor(Microsoft.Data.Edm.IEdmCollectionTypeReference,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.IEdmValue})">
|
1908
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmCollectionValue" /> class. </summary>
|
1909
|
+
<param name="type">A reference to the MultiValue type that describes this collection value.</param>
|
1910
|
+
<param name="elementValues">The collection of values stored in this collection value.</param>
|
1911
|
+
</member>
|
1912
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmCollectionValue.ElementValues">
|
1913
|
+
<summary> Gets the values stored in this collection. </summary>
|
1914
|
+
<returns>The values stored in this collection.</returns>
|
1915
|
+
</member>
|
1916
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmComplexType">
|
1917
|
+
<summary> Represents a definition of an EDM complex type. </summary>
|
1918
|
+
</member>
|
1919
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmComplexType.#ctor">
|
1920
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmComplexType" /> class. </summary>
|
1921
|
+
</member>
|
1922
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmComplexType.#ctor(System.Boolean,System.Boolean,Microsoft.Data.Edm.IEdmComplexType,System.String,System.String)">
|
1923
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmComplexType" /> class. </summary>
|
1924
|
+
<param name="isAbstract">Denotes whether this complex type is abstract.</param>
|
1925
|
+
<param name="isOpen">Denotes whether this type is open.</param>
|
1926
|
+
<param name="baseType">The base type of this complex type.</param>
|
1927
|
+
<param name="namespaceName">The namespace this type belongs to.</param>
|
1928
|
+
<param name="name">The name of this type within its namespace.</param>
|
1929
|
+
</member>
|
1930
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmComplexType.ComputeCycleBaseType">
|
1931
|
+
<summary> Computes the type to return if a cycle is detected in the base type hierarchy. </summary>
|
1932
|
+
<returns>Bad type to stand in for the base type in case of a cycle.</returns>
|
1933
|
+
</member>
|
1934
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmComplexType.Name">
|
1935
|
+
<summary> Gets or sets the name of this element. </summary>
|
1936
|
+
<returns>The name of this element.</returns>
|
1937
|
+
</member>
|
1938
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmComplexType.Namespace">
|
1939
|
+
<summary> Gets or sets the namespace of this element. </summary>
|
1940
|
+
<returns>The namespace of this element.</returns>
|
1941
|
+
</member>
|
1942
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmComplexType.SchemaElementKind">
|
1943
|
+
<summary> Gets the schema element kind of this element. </summary>
|
1944
|
+
<returns>The schema element kind of this element.</returns>
|
1945
|
+
</member>
|
1946
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmComplexType.SetBaseType(Microsoft.Data.Edm.IEdmStructuredType)">
|
1947
|
+
<summary> Ensures the new base type is the correct type and sets the base type of the instance. </summary>
|
1948
|
+
<param name="newBaseType">New base type for this type.</param>
|
1949
|
+
</member>
|
1950
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmComplexTypeReference">
|
1951
|
+
<summary> Represents a reference to an EDM complex type. </summary>
|
1952
|
+
</member>
|
1953
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmComplexTypeReference.#ctor(Microsoft.Data.Edm.IEdmComplexType,System.Boolean)">
|
1954
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmComplexTypeReference" /> class. </summary>
|
1955
|
+
<param name="complexType">The type definition this reference refers to.</param>
|
1956
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
1957
|
+
</member>
|
1958
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmConstants">
|
1959
|
+
<summary> Contains constant values that apply to the EDM model, regardless of source (for CSDL/EDMX specific constants see <see cref="T:Microsoft.Data.Edm.Csdl.CsdlConstants" />). </summary>
|
1960
|
+
</member>
|
1961
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.DataServiceVersion">
|
1962
|
+
<summary> The local name of the annotation that stores the data services version attribute for EDMX serialization. </summary>
|
1963
|
+
</member>
|
1964
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.DocumentationLocalName">
|
1965
|
+
<summary> The local name of annotations that will be serialized as documentation elements. </summary>
|
1966
|
+
</member>
|
1967
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.DocumentationUri">
|
1968
|
+
<summary> The URI of annotations that will be serialized as documentation elements. </summary>
|
1969
|
+
</member>
|
1970
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.EdmVersion1">
|
1971
|
+
<summary> Version 1.0 of EDM. Corresponds to CSDL namespace "http://schemas.microsoft.com/ado/2006/04/edm". </summary>
|
1972
|
+
</member>
|
1973
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.EdmVersion1_1">
|
1974
|
+
<summary> Version 1.1 of EDM. Corresponds to CSDL namespace "http://schemas.microsoft.com/ado/2007/05/edm". </summary>
|
1975
|
+
</member>
|
1976
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.EdmVersion1_2">
|
1977
|
+
<summary> Version 1.2 of EDM. Corresponds to CSDL namespace "http://schemas.microsoft.com/ado/2008/01/edm". </summary>
|
1978
|
+
</member>
|
1979
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.EdmVersion2">
|
1980
|
+
<summary> Version 2.0 of EDM. Corresponds to CSDL namespaces "http://schemas.microsoft.com/ado/2008/09/edm" and "http://schemas.microsoft.com/ado/2009/08/edm". </summary>
|
1981
|
+
</member>
|
1982
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.EdmVersion2_2">
|
1983
|
+
<summary> Version 2.2 of EDM. Corresponds to CSDL namespace "http://schemas.microsoft.com/ado/2010/02/edm". </summary>
|
1984
|
+
</member>
|
1985
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.EdmVersion3">
|
1986
|
+
<summary> Version 3.0 of EDM. Corresponds to CSDL namespace "http://schemas.microsoft.com/ado/2009/11/edm". </summary>
|
1987
|
+
</member>
|
1988
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.EdmVersionLatest">
|
1989
|
+
<summary> The current latest version of EDM. </summary>
|
1990
|
+
</member>
|
1991
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.InternalUri">
|
1992
|
+
<summary> The URI of annotations that are internal and will not be serialized. </summary>
|
1993
|
+
</member>
|
1994
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.IsEnumMemberValueExplicit">
|
1995
|
+
<summary> The local name of the annotation that stores if an enum members value should be serialized explicitly </summary>
|
1996
|
+
</member>
|
1997
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.MaxDataServiceVersion">
|
1998
|
+
<summary> The local name of the annotation that stores the max data services version attribute for EDMX serialization. </summary>
|
1999
|
+
</member>
|
2000
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmConstants.NamespacePrefixLocalName">
|
2001
|
+
<summary> The local name of the annotation that stores namespace prefixes for serialization. </summary>
|
2002
|
+
</member>
|
2003
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmCoreModel">
|
2004
|
+
<summary> Provides predefined declarations relevant to EDM semantics. </summary>
|
2005
|
+
</member>
|
2006
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmCoreModel.EntityContainers">
|
2007
|
+
<summary> Gets the collection of entity containers in this model. </summary>
|
2008
|
+
<returns>The collection of entity containers in this model.</returns>
|
2009
|
+
</member>
|
2010
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.FindAssociation(System.String)">
|
2011
|
+
<summary> Searches for an association with the given name in this model and returns null if no such association exists. </summary>
|
2012
|
+
<returns>The requested association, or null if no such association exists.</returns>
|
2013
|
+
<param name="qualifiedName">The qualified name of the association being found.</param>
|
2014
|
+
</member>
|
2015
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.FindEntityContainer(System.String)">
|
2016
|
+
<summary> Searches for an entity container with the given name in this model and returns null if no such entity container exists. </summary>
|
2017
|
+
<returns>The requested entity container, or null if no such entity container exists.</returns>
|
2018
|
+
<param name="name">The name of the entity container being found.</param>
|
2019
|
+
</member>
|
2020
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.FindFunctions(System.String)">
|
2021
|
+
<summary> Searches for functions with the given name in this model and returns an empty enumerable if no such function exists. </summary>
|
2022
|
+
<returns>A set functions sharing the specified qualified name, or an empty enumerable if no such function exists.</returns>
|
2023
|
+
<param name="qualifiedName">The qualified name of the function being found.</param>
|
2024
|
+
</member>
|
2025
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.FindType(System.String)">
|
2026
|
+
<summary> Searches for a type with the given name in this model and returns null if no such type exists. </summary>
|
2027
|
+
<returns>The requested type, or null if no such type exists.</returns>
|
2028
|
+
<param name="qualifiedName">The qualified name of the type being found.</param>
|
2029
|
+
</member>
|
2030
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.FindValueTerm(System.String)">
|
2031
|
+
<summary> Searches for a value term with the given name in this model and returns null if no such value term exists. </summary>
|
2032
|
+
<returns>The requested value term, or null if no such value term exists.</returns>
|
2033
|
+
<param name="qualifiedName">The qualified name of the value term being found.</param>
|
2034
|
+
</member>
|
2035
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.FindVocabularyAnnotations(Microsoft.Data.Edm.IEdmAnnotatable)">
|
2036
|
+
<summary> Searches for vocabulary annotations specified by this model or a referenced model for a given element. </summary>
|
2037
|
+
<returns>The vocabulary annotations for the element.</returns>
|
2038
|
+
<param name="element">The annotated element.</param>
|
2039
|
+
</member>
|
2040
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetBinary(System.Boolean)">
|
2041
|
+
<summary> Gets a reference to a binary primitive type definition. </summary>
|
2042
|
+
<returns>A new binary type reference.</returns>
|
2043
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2044
|
+
</member>
|
2045
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetBinary(System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Boolean)">
|
2046
|
+
<summary> Gets a reference to a binary primitive type definition. </summary>
|
2047
|
+
<returns>A new binary type reference.</returns>
|
2048
|
+
<param name="isMaxMaxLength">Flag specifying if max length is the maximum allowable value.</param>
|
2049
|
+
<param name="maxLength">Maximum length of the type.</param>
|
2050
|
+
<param name="isFixedLength">Flag specifying if the type will have a fixed length.</param>
|
2051
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2052
|
+
</member>
|
2053
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetBoolean(System.Boolean)">
|
2054
|
+
<summary> Gets a reference to the Boolean primitive type definition. </summary>
|
2055
|
+
<returns>A new primitive type reference.</returns>
|
2056
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2057
|
+
</member>
|
2058
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetByte(System.Boolean)">
|
2059
|
+
<summary> Gets a reference to the Byte primitive type definition. </summary>
|
2060
|
+
<returns>A new primitive type reference.</returns>
|
2061
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2062
|
+
</member>
|
2063
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetCollection(Microsoft.Data.Edm.IEdmTypeReference)">
|
2064
|
+
<summary> Gets a reference to a non-atomic collection type definition. </summary>
|
2065
|
+
<returns>A new non-atomic collection type reference.</returns>
|
2066
|
+
<param name="elementType">Type of elements in the collection.</param>
|
2067
|
+
</member>
|
2068
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetDecimal(System.Boolean)">
|
2069
|
+
<summary> Gets a reference to a decimal primitive type definition. </summary>
|
2070
|
+
<returns>A new decimal type reference.</returns>
|
2071
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2072
|
+
</member>
|
2073
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetDecimal(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Boolean)">
|
2074
|
+
<summary> Gets a reference to a decimal primitive type definition. </summary>
|
2075
|
+
<returns>A new decimal type reference.</returns>
|
2076
|
+
<param name="precision">Precision of values of this type.</param>
|
2077
|
+
<param name="scale">Scale of values of this type.</param>
|
2078
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2079
|
+
</member>
|
2080
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetDouble(System.Boolean)">
|
2081
|
+
<summary> Gets a reference to a double primitive type definition. </summary>
|
2082
|
+
<returns>A new decimal type reference.</returns>
|
2083
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2084
|
+
</member>
|
2085
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetGuid(System.Boolean)">
|
2086
|
+
<summary> Gets a reference to the GUID primitive type definition. </summary>
|
2087
|
+
<returns>A new primitive type reference.</returns>
|
2088
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2089
|
+
</member>
|
2090
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetInt16(System.Boolean)">
|
2091
|
+
<summary> Gets a reference to the Int16 primitive type definition. </summary>
|
2092
|
+
<returns>A new primitive type reference.</returns>
|
2093
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2094
|
+
</member>
|
2095
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetInt32(System.Boolean)">
|
2096
|
+
<summary> Gets a reference to the Int32 primitive type definition. </summary>
|
2097
|
+
<returns>A new primitive type reference.</returns>
|
2098
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2099
|
+
</member>
|
2100
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetInt64(System.Boolean)">
|
2101
|
+
<summary> Gets a reference to the Int64 primitive type definition. </summary>
|
2102
|
+
<returns>A new primitive type reference.</returns>
|
2103
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2104
|
+
</member>
|
2105
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetMultiValue(Microsoft.Data.Edm.IEdmTypeReference)">
|
2106
|
+
<summary> Gets a reference to an atomic collection type definition. </summary>
|
2107
|
+
<returns>A new atomic collection type reference.</returns>
|
2108
|
+
<param name="elementType">Type of elements in the collection.</param>
|
2109
|
+
</member>
|
2110
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetPrimitive(Microsoft.Data.Edm.EdmPrimitiveTypeKind,System.Boolean)">
|
2111
|
+
<summary> Gets a reference to a primitive type of the specified kind. </summary>
|
2112
|
+
<returns>A new primitive type reference.</returns>
|
2113
|
+
<param name="kind">Primitive kind of the type reference being created.</param>
|
2114
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2115
|
+
</member>
|
2116
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetPrimitiveType(Microsoft.Data.Edm.EdmPrimitiveTypeKind)">
|
2117
|
+
<summary> Gets primitive type by kind. </summary>
|
2118
|
+
<returns>Primitive type definition.</returns>
|
2119
|
+
<param name="kind">Kind of the primitive type.</param>
|
2120
|
+
</member>
|
2121
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetPrimitiveTypeKind(System.String)">
|
2122
|
+
<summary> Gets the <see cref="T:Microsoft.Data.Edm.EdmPrimitiveTypeKind" /> by the type name. </summary>
|
2123
|
+
<returns>The EdmPrimitiveTypeKind of the type.</returns>
|
2124
|
+
<param name="typeName">Name of the type to look up.</param>
|
2125
|
+
</member>
|
2126
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetSByte(System.Boolean)">
|
2127
|
+
<summary> Gets a reference to the SByte primitive type definition. </summary>
|
2128
|
+
<returns>A new primitive type reference.</returns>
|
2129
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2130
|
+
</member>
|
2131
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetSingle(System.Boolean)">
|
2132
|
+
<summary> Gets a reference to a single primitive type definition. </summary>
|
2133
|
+
<returns>A new decimal type reference.</returns>
|
2134
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2135
|
+
</member>
|
2136
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetSpatial(Microsoft.Data.Edm.EdmPrimitiveTypeKind,System.Boolean)">
|
2137
|
+
<summary> Gets a reference to a spatial primitive type definition. </summary>
|
2138
|
+
<returns>A new spatial type reference.</returns>
|
2139
|
+
<param name="kind">Primitive kind of the type reference being created.</param>
|
2140
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2141
|
+
</member>
|
2142
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetSpatial(Microsoft.Data.Edm.EdmPrimitiveTypeKind,System.Nullable{System.Int32},System.Boolean)">
|
2143
|
+
<summary> Gets a reference to a spatial primitive type definition. </summary>
|
2144
|
+
<returns>A new spatial type reference.</returns>
|
2145
|
+
<param name="kind">Primitive kind of the type reference being created.</param>
|
2146
|
+
<param name="spatialReferenceIdentifier">Spatial Reference Identifier for the spatial type being created.</param>
|
2147
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2148
|
+
</member>
|
2149
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetStream(System.Boolean)">
|
2150
|
+
<summary> Gets a reference to a stream primitive type definition. </summary>
|
2151
|
+
<returns>A new stream type reference.</returns>
|
2152
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2153
|
+
</member>
|
2154
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetString(System.Boolean)">
|
2155
|
+
<summary> Gets a reference to a binary string type definition. </summary>
|
2156
|
+
<returns>A new string type reference.</returns>
|
2157
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2158
|
+
</member>
|
2159
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetString(System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Boolean)">
|
2160
|
+
<summary> Gets a reference to a string primitive type definition. </summary>
|
2161
|
+
<returns>A new string type reference.</returns>
|
2162
|
+
<param name="isMaxMaxLength">Flag specifying if maximum length is the maximum allowable value.</param>
|
2163
|
+
<param name="maxLength">Maximum length of the type.</param>
|
2164
|
+
<param name="isFixedLength">Flag specifying if the type will have a fixed length.</param>
|
2165
|
+
<param name="isUnicode">Flag specifying if the type should support unicode encoding.</param>
|
2166
|
+
<param name="collation">String representing how data should be ordered.</param>
|
2167
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2168
|
+
</member>
|
2169
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetTemporalType(Microsoft.Data.Edm.EdmPrimitiveTypeKind,System.Boolean)">
|
2170
|
+
<summary> Gets a reference to a temporal primitive type definition. </summary>
|
2171
|
+
<returns>A new temporal type reference.</returns>
|
2172
|
+
<param name="kind">Primitive kind of the type reference being created.</param>
|
2173
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2174
|
+
</member>
|
2175
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmCoreModel.GetTemporalType(Microsoft.Data.Edm.EdmPrimitiveTypeKind,System.Nullable{System.Int32},System.Boolean)">
|
2176
|
+
<summary> Gets a reference to a temporal primitive type definition. </summary>
|
2177
|
+
<returns>A new temporal type reference.</returns>
|
2178
|
+
<param name="kind">Primitive kind of the type reference being created.</param>
|
2179
|
+
<param name="precision">Precision of values of this type.</param>
|
2180
|
+
<param name="isNullable">Flag specifying if the referenced type should be nullable.</param>
|
2181
|
+
</member>
|
2182
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmCoreModel.Instance">
|
2183
|
+
<summary> The default core EDM model. </summary>
|
2184
|
+
</member>
|
2185
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmCoreModel.Namespace">
|
2186
|
+
<summary> Gets the namespace of this core model. </summary>
|
2187
|
+
<returns>The namespace of this core model.</returns>
|
2188
|
+
</member>
|
2189
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmCoreModel.References">
|
2190
|
+
<summary> Gets the collection of models referred to by this model. </summary>
|
2191
|
+
<returns>The collection of models referred to by this model.</returns>
|
2192
|
+
</member>
|
2193
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmCoreModel.SchemaElements">
|
2194
|
+
<summary> Gets the types defined in this core model. </summary>
|
2195
|
+
<returns>The types defined in this core model.</returns>
|
2196
|
+
</member>
|
2197
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmCoreModel.VocabularyAnnotations">
|
2198
|
+
<summary> Gets the vocabulary annotations defined in this model. </summary>
|
2199
|
+
<returns>The vocabulary annotations defined in this model.</returns>
|
2200
|
+
</member>
|
2201
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmDateTimeOffsetValue">
|
2202
|
+
<summary> Represents an EDM DateTimeOffset value. </summary>
|
2203
|
+
</member>
|
2204
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmDateTimeOffsetValue.#ctor(Microsoft.Data.Edm.IEdmTemporalTypeReference,System.DateTimeOffset)">
|
2205
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmDateTimeOffsetValue" /> class. </summary>
|
2206
|
+
<param name="type">Type of the DateTimeOffset.</param>
|
2207
|
+
<param name="value">DateTimeOffset value represented by this value.</param>
|
2208
|
+
</member>
|
2209
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmDateTimeOffsetValue.Value">
|
2210
|
+
<summary> Gets the definition of this value. </summary>
|
2211
|
+
<returns>The definition of this value.</returns>
|
2212
|
+
</member>
|
2213
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmDateTimeValue">
|
2214
|
+
<summary>Represents an EDM date-time value. </summary>
|
2215
|
+
</member>
|
2216
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmDateTimeValue.#ctor(Microsoft.Data.Edm.IEdmTemporalTypeReference,System.DateTime)">
|
2217
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmDateTimeValue" /> class. </summary>
|
2218
|
+
<param name="type">The type of the date-time.</param>
|
2219
|
+
<param name="value">The date-time value represented by this value.</param>
|
2220
|
+
</member>
|
2221
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmDateTimeValue.Value">
|
2222
|
+
<summary>Gets the definition of this value.</summary>
|
2223
|
+
<returns>The definition of this value.</returns>
|
2224
|
+
</member>
|
2225
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmDecimalTypeReference">
|
2226
|
+
<summary>Represents a reference to an EDM decimal type. </summary>
|
2227
|
+
</member>
|
2228
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmDecimalTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean)">
|
2229
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmDecimalTypeReference" /> class. </summary>
|
2230
|
+
<param name="definition">The type this reference refers to.</param>
|
2231
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2232
|
+
</member>
|
2233
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmDecimalTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Int32})">
|
2234
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmDecimalTypeReference" /> class. </summary>
|
2235
|
+
<param name="definition">The type this reference refers to.</param>
|
2236
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2237
|
+
<param name="precision">The precision of values with this type.</param>
|
2238
|
+
<param name="scale">The scale of values with this type.</param>
|
2239
|
+
</member>
|
2240
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmDecimalTypeReference.Precision">
|
2241
|
+
<summary>Gets the precision of this type.</summary>
|
2242
|
+
<returns>The precision of this type.</returns>
|
2243
|
+
</member>
|
2244
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmDecimalTypeReference.Scale">
|
2245
|
+
<summary>Gets the scale of this type.</summary>
|
2246
|
+
<returns>The scale of this type.</returns>
|
2247
|
+
</member>
|
2248
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmDecimalValue">
|
2249
|
+
<summary>Represents an EDM decimal value. </summary>
|
2250
|
+
</member>
|
2251
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmDecimalValue.#ctor(Microsoft.Data.Edm.IEdmDecimalTypeReference,System.Decimal)">
|
2252
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmDecimalValue" /> class. </summary>
|
2253
|
+
<param name="type">The type of the decimal.</param>
|
2254
|
+
<param name="value">The decimal value represented by this value.</param>
|
2255
|
+
</member>
|
2256
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmDecimalValue.Value">
|
2257
|
+
<summary>Gets the definition of this value.</summary>
|
2258
|
+
<returns>The definition of this value.</returns>
|
2259
|
+
</member>
|
2260
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmDocumentation">
|
2261
|
+
<summary>Represents an EDM documentation. </summary>
|
2262
|
+
</member>
|
2263
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmDocumentation.#ctor">
|
2264
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmDocumentation" /> class. </summary>
|
2265
|
+
</member>
|
2266
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmDocumentation.#ctor(System.String,System.String)">
|
2267
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmDocumentation" /> class. </summary>
|
2268
|
+
<param name="summary">A summary of the documentation.</param>
|
2269
|
+
<param name="longDescription">A long description of the documentation.</param>
|
2270
|
+
</member>
|
2271
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmDocumentation.LongDescription">
|
2272
|
+
<summary>Gets or sets a long description of this documentation.</summary>
|
2273
|
+
<returns>A long description of this documentation.</returns>
|
2274
|
+
</member>
|
2275
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmDocumentation.Summary">
|
2276
|
+
<summary>Gets or sets a summary of this documentation.</summary>
|
2277
|
+
<returns>A summary of this documentation.</returns>
|
2278
|
+
</member>
|
2279
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmElement">
|
2280
|
+
<summary>The common base class for all EDM elements. </summary>
|
2281
|
+
</member>
|
2282
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmElement.#ctor">
|
2283
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmElement" /> class.</summary>
|
2284
|
+
</member>
|
2285
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmElement.GetAnnotation(System.String,System.String)">
|
2286
|
+
<summary>Retrieves an annotation value from an EDM element. Returns null if no annotation with the given name exists. </summary>
|
2287
|
+
<returns>The requested annotation, or null if no such annotation exists.</returns>
|
2288
|
+
<param name="namespaceName">The namespace of the annotation.</param>
|
2289
|
+
<param name="localName">The name of the annotation within the namespace.</param>
|
2290
|
+
</member>
|
2291
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmElement.ImmediateAnnotations">
|
2292
|
+
<summary>Gets the annotations associated with this element. </summary>
|
2293
|
+
<returns>The annotations associated with this element.</returns>
|
2294
|
+
</member>
|
2295
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmElement.SetAnnotation(System.String,System.String,System.Object)">
|
2296
|
+
<summary>Sets an annotation value in an EDM element. If the value is null, no annotation is added and an existing annotation with the same name is removed. </summary>
|
2297
|
+
<param name="namespaceName">The namespace of the annotation.</param>
|
2298
|
+
<param name="localName">The name of the annotation within the namespace.</param>
|
2299
|
+
<param name="value">The value of the new annotation.</param>
|
2300
|
+
</member>
|
2301
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmEntityContainer">
|
2302
|
+
<summary>Represents an EDM entity container. </summary>
|
2303
|
+
</member>
|
2304
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityContainer.#ctor">
|
2305
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEntityContainer" /> class. </summary>
|
2306
|
+
</member>
|
2307
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityContainer.#ctor(System.String)">
|
2308
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEntityContainer" /> class. </summary>
|
2309
|
+
<param name="name">The name of the entity container.</param>
|
2310
|
+
</member>
|
2311
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityContainer.AddElement(Microsoft.Data.Edm.IEdmEntityContainerElement)">
|
2312
|
+
<summary>Adds an entity container element to this entity container. </summary>
|
2313
|
+
<param name="element">The element to add.</param>
|
2314
|
+
</member>
|
2315
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntityContainer.Elements">
|
2316
|
+
<summary>Gets a collection of the elements of this entity container. </summary>
|
2317
|
+
<returns>A collection of the elements of this entity container.</returns>
|
2318
|
+
</member>
|
2319
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityContainer.FindAssociationSet(System.String)">
|
2320
|
+
<summary>Searches for an association set with the given name in this entity container and returns null if no such set exists. </summary>
|
2321
|
+
<returns>The requested element, or null if the element does not exist.</returns>
|
2322
|
+
<param name="setName">The name of the element being found.</param>
|
2323
|
+
</member>
|
2324
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityContainer.FindEntitySet(System.String)">
|
2325
|
+
<summary>Searches for an entity set with the given name in this entity container and returns null if no such set exists. </summary>
|
2326
|
+
<returns>The requested element, or null if the element does not exist.</returns>
|
2327
|
+
<param name="setName">The name of the element being found.</param>
|
2328
|
+
</member>
|
2329
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityContainer.FindFunctionImports(System.String)">
|
2330
|
+
<summary>Searches for function imports with the given name in this entity container and returns null if no such function import exists. </summary>
|
2331
|
+
<returns>A group of the requested function imports, or null if no such function import exists.</returns>
|
2332
|
+
<param name="functionName">The name of the function import being found.</param>
|
2333
|
+
</member>
|
2334
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntityContainer.Name">
|
2335
|
+
<summary>Gets or sets the name of this entity container. </summary>
|
2336
|
+
<returns>The name of this entity container.</returns>
|
2337
|
+
</member>
|
2338
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityContainer.RemoveElement(Microsoft.Data.Edm.IEdmEntityContainerElement)">
|
2339
|
+
<summary>Removes an entity container element from this entity container. </summary>
|
2340
|
+
<param name="element">The element to remove.</param>
|
2341
|
+
</member>
|
2342
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmEntityReferenceType">
|
2343
|
+
<summary>Represents a definition of an EDM entity reference type. </summary>
|
2344
|
+
</member>
|
2345
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityReferenceType.#ctor(Microsoft.Data.Edm.IEdmEntityType)">
|
2346
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEntityReferenceType" /> class. </summary>
|
2347
|
+
<param name="entityType">The entity referred to by this entity reference.</param>
|
2348
|
+
</member>
|
2349
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntityReferenceType.EntityType">
|
2350
|
+
<summary>Gets the entity type pointed to by this entity reference. </summary>
|
2351
|
+
<returns>The entity type pointed to by this entity reference.</returns>
|
2352
|
+
</member>
|
2353
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmEntityReferenceTypeReference">
|
2354
|
+
<summary>Represents a reference to an EDM entity reference type. </summary>
|
2355
|
+
</member>
|
2356
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityReferenceTypeReference.#ctor(Microsoft.Data.Edm.IEdmEntityReferenceType,System.Boolean)">
|
2357
|
+
<summary> Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEntityReferenceTypeReference" /> class. </summary>
|
2358
|
+
<param name="entityReferenceType">The definition referred to by this reference.</param>
|
2359
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2360
|
+
</member>
|
2361
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntityReferenceTypeReference.EntityReferenceDefinition">
|
2362
|
+
<summary>Gets the entity reference definition to which this type refers. </summary>
|
2363
|
+
<returns>The entity reference definition to which this type refers.</returns>
|
2364
|
+
</member>
|
2365
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmEntitySet">
|
2366
|
+
<summary>Represents an EDM entity set. </summary>
|
2367
|
+
</member>
|
2368
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntitySet.#ctor">
|
2369
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEntitySet" /> class. </summary>
|
2370
|
+
</member>
|
2371
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntitySet.#ctor(System.String,Microsoft.Data.Edm.IEdmEntityType)">
|
2372
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEntitySet" /> class. </summary>
|
2373
|
+
<param name="name">The name of the entity set.</param>
|
2374
|
+
<param name="elementType">The entity type of the elements in this entity set.</param>
|
2375
|
+
</member>
|
2376
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntitySet.AddNavigationTarget(Microsoft.Data.Edm.Library.EdmNavigationProperty,Microsoft.Data.Edm.IEdmEntitySet)">
|
2377
|
+
<summary>Adds a navigation target that specifies the destination entity set of a navigation property of an entity in this entity set. </summary>
|
2378
|
+
<param name="property">The navigation property the target is being set for.</param>
|
2379
|
+
<param name="target">The destination entity set of the specified navigation property.</param>
|
2380
|
+
</member>
|
2381
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntitySet.AssociationSets">
|
2382
|
+
<summary>Gets the collection of entity sets related to this entity set. </summary>
|
2383
|
+
<returns>The collection of entity sets related to this entity set.</returns>
|
2384
|
+
</member>
|
2385
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntitySet.ContainerElementKind">
|
2386
|
+
<summary>Gets the kind of element of this container element. </summary>
|
2387
|
+
<returns>The kind of element of this container element.</returns>
|
2388
|
+
</member>
|
2389
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntitySet.ElementType">
|
2390
|
+
<summary>Gets or sets the entity type contained in this entity set. </summary>
|
2391
|
+
<returns>The entity type contained in this entity set.</returns>
|
2392
|
+
</member>
|
2393
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntitySet.Name">
|
2394
|
+
<summary>Gets or sets the name of the entity set. </summary>
|
2395
|
+
<returns>The name of the entity set.</returns>
|
2396
|
+
</member>
|
2397
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntitySet.RemoveNavigationTarget(Microsoft.Data.Edm.Library.EdmNavigationProperty)">
|
2398
|
+
<summary>Removes a navigation target which specified the destination entity set of a navigation property of an entity in this entity set. </summary>
|
2399
|
+
<param name="property">The navigation property the target is being removed from.</param>
|
2400
|
+
</member>
|
2401
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmEntityType">
|
2402
|
+
<summary>Represents a definition of an EDM entity type. </summary>
|
2403
|
+
</member>
|
2404
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityType.#ctor">
|
2405
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEntityType" /> class. </summary>
|
2406
|
+
</member>
|
2407
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityType.#ctor(System.Boolean,System.Boolean,Microsoft.Data.Edm.IEdmEntityType,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.IEdmStructuralProperty})">
|
2408
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEntityType" /> class. </summary>
|
2409
|
+
<param name="isAbstract">Denotes an entity that cannot be instantiated.</param>
|
2410
|
+
<param name="isOpen">Denotes if the type is open.</param>
|
2411
|
+
<param name="baseType">The base type of this entity type.</param>
|
2412
|
+
<param name="namespaceName">The namespace the entity belongs to.</param>
|
2413
|
+
<param name="name">The name of the entity.</param>
|
2414
|
+
<param name="key">The key of the entity.</param>
|
2415
|
+
</member>
|
2416
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityType.#ctor(System.Boolean,System.Boolean,Microsoft.Data.Edm.IEdmEntityType,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.IEdmStructuralProperty})">
|
2417
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEntityType" /> class. </summary>
|
2418
|
+
<param name="isAbstract">Denotes an entity that cannot be instantiated.</param>
|
2419
|
+
<param name="isOpen">Denotes if the type is open.</param>
|
2420
|
+
<param name="baseType">The base type of this entity type.</param>
|
2421
|
+
<param name="namespaceName">The namespace the entity belongs to.</param>
|
2422
|
+
<param name="namespaceUri">The URI of the namespace to which the entity belongs.</param>
|
2423
|
+
<param name="name">The name of the entity.</param>
|
2424
|
+
<param name="key">The key of the entity.</param>
|
2425
|
+
</member>
|
2426
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityType.ComputeCycleBaseType">
|
2427
|
+
<summary>Computes the type to return if a cycle is detected in the base type hierarchy. </summary>
|
2428
|
+
<returns>A bad type to stand in for the base type in case of a cycle.</returns>
|
2429
|
+
</member>
|
2430
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntityType.DeclaredKey">
|
2431
|
+
<summary>Gets or sets the structural properties of the entity type that make up the entity key. </summary>
|
2432
|
+
<returns>The structural properties of the entity type that make up the entity key.</returns>
|
2433
|
+
</member>
|
2434
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntityType.Name">
|
2435
|
+
<summary>Gets or sets the name of this element. </summary>
|
2436
|
+
<returns>The name of this element.</returns>
|
2437
|
+
</member>
|
2438
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntityType.Namespace">
|
2439
|
+
<summary>Gets or sets the namespace this schema element belongs to. </summary>
|
2440
|
+
<returns>The namespace this schema element belongs to.</returns>
|
2441
|
+
</member>
|
2442
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntityType.NamespaceUri">
|
2443
|
+
<summary>Gets or sets the namespace URI of this entity type. </summary>
|
2444
|
+
<returns>The namespace URI of this entity type.</returns>
|
2445
|
+
</member>
|
2446
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityType.RemoveProperty(Microsoft.Data.Edm.IEdmProperty)">
|
2447
|
+
<summary>Removes a property from this type. </summary>
|
2448
|
+
<param name="property">The property being removed.</param>
|
2449
|
+
</member>
|
2450
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntityType.SchemaElementKind">
|
2451
|
+
<summary>Gets the kind of this schema element. </summary>
|
2452
|
+
<returns>The kind of this schema element.</returns>
|
2453
|
+
</member>
|
2454
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityType.SetBaseType(Microsoft.Data.Edm.IEdmStructuredType)">
|
2455
|
+
<summary>Ensures the new base type is the correct type and sets the base type of the instance. </summary>
|
2456
|
+
<param name="newBaseType">The new base type for this type.</param>
|
2457
|
+
</member>
|
2458
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmEntityType.TermKind">
|
2459
|
+
<summary>Gets the term kind of the entity type. </summary>
|
2460
|
+
<returns>The term kind of the entity type.</returns>
|
2461
|
+
</member>
|
2462
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmEntityTypeReference">
|
2463
|
+
<summary>Represents a reference to an EDM entity type.</summary>
|
2464
|
+
</member>
|
2465
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEntityTypeReference.#ctor(Microsoft.Data.Edm.IEdmEntityType,System.Boolean)">
|
2466
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEntityTypeReference" /> class.</summary>
|
2467
|
+
<param name="entityType">The definition refered to by this reference.</param>
|
2468
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2469
|
+
</member>
|
2470
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmEnumTypeReference">
|
2471
|
+
<summary>Represents a reference to an EDM enumeration type.</summary>
|
2472
|
+
</member>
|
2473
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmEnumTypeReference.#ctor(Microsoft.Data.Edm.IEdmEnumType,System.Boolean)">
|
2474
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmEnumTypeReference" />class.</summary>
|
2475
|
+
<param name="enumType">The definition refered to by this reference.</param>
|
2476
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2477
|
+
</member>
|
2478
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmFloatingValue">
|
2479
|
+
<summary>Represents an EDM floating point value.</summary>
|
2480
|
+
</member>
|
2481
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFloatingValue.#ctor(Microsoft.Data.Edm.IEdmPrimitiveTypeReference,System.Double)">
|
2482
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmFloatingValue" /> class.</summary>
|
2483
|
+
<param name="type">Type of the floating point.</param>
|
2484
|
+
<param name="value">Floating point value represented by this value.</param>
|
2485
|
+
</member>
|
2486
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFloatingValue.Value">
|
2487
|
+
<summary>Gets the definition of this value.</summary>
|
2488
|
+
<returns>The definition of this value.</returns>
|
2489
|
+
</member>
|
2490
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmFunction">
|
2491
|
+
<summary>Represents an EDM function.</summary>
|
2492
|
+
</member>
|
2493
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunction.#ctor">
|
2494
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmFunction" /> class.</summary>
|
2495
|
+
</member>
|
2496
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunction.#ctor(System.String,System.String,Microsoft.Data.Edm.IEdmTypeReference)">
|
2497
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmFunction" /> class.</summary>
|
2498
|
+
<param name="namespaceName">Namespace of the function.</param>
|
2499
|
+
<param name="name">Name of the function.</param>
|
2500
|
+
<param name="returnType">Return type of the function.</param>
|
2501
|
+
</member>
|
2502
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunction.DefiningExpression">
|
2503
|
+
<summary>Gets or sets the defining expression of this function.</summary>
|
2504
|
+
<returns>The defining expression of this function.</returns>
|
2505
|
+
</member>
|
2506
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunction.Namespace">
|
2507
|
+
<summary>Gets or sets the namespace of this function.</summary>
|
2508
|
+
<returns>The namespace of this function.</returns>
|
2509
|
+
</member>
|
2510
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunction.SchemaElementKind">
|
2511
|
+
<summary>Gets the element kind of this function, which is always Function.</summary>
|
2512
|
+
<returns>The element kind of this function.</returns>
|
2513
|
+
</member>
|
2514
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmFunctionBase">
|
2515
|
+
<summary>Represents an EDM function or function import.</summary>
|
2516
|
+
</member>
|
2517
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunctionBase.#ctor">
|
2518
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmFunctionBase" /> class.</summary>
|
2519
|
+
</member>
|
2520
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunctionBase.#ctor(System.String,Microsoft.Data.Edm.IEdmTypeReference)">
|
2521
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmFunctionBase" /> class.</summary>
|
2522
|
+
<param name="name">The name of the function.</param>
|
2523
|
+
<param name="returnType">The return type of the function.</param>
|
2524
|
+
</member>
|
2525
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunctionBase.AddParameter(Microsoft.Data.Edm.IEdmFunctionParameter)">
|
2526
|
+
<summary>Adds a parameter to this function (as the last parameter).</summary>
|
2527
|
+
<param name="parameter">The parameter being added.</param>
|
2528
|
+
</member>
|
2529
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunctionBase.AddParameter(System.String,Microsoft.Data.Edm.IEdmTypeReference)">
|
2530
|
+
<summary>Adds a parameter to this function (as the last parameter).</summary>
|
2531
|
+
<param name="name">The name of the parameter being added.</param>
|
2532
|
+
<param name="type">The type of the parameter being added.</param>
|
2533
|
+
</member>
|
2534
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunctionBase.FindParameter(System.String)">
|
2535
|
+
<summary>Searches for a parameter with the given name in this function and returns null if no such parameter exists.</summary>
|
2536
|
+
<returns>The requested parameter, or null if no such parameter exists.</returns>
|
2537
|
+
<param name="name">The name of the parameter to be found.</param>
|
2538
|
+
</member>
|
2539
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionBase.Name">
|
2540
|
+
<summary>Gets or sets the name of this function.</summary>
|
2541
|
+
<returns>The name of this function.</returns>
|
2542
|
+
</member>
|
2543
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionBase.Parameters">
|
2544
|
+
<summary>Gets the parameters of this function.</summary>
|
2545
|
+
<returns>The parameters of this function.</returns>
|
2546
|
+
</member>
|
2547
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunctionBase.RemoveParameter(Microsoft.Data.Edm.IEdmFunctionParameter)">
|
2548
|
+
<summary>Removes a parameter from this function.</summary>
|
2549
|
+
<param name="parameter">The parameter being removed.</param>
|
2550
|
+
</member>
|
2551
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionBase.ReturnType">
|
2552
|
+
<summary>Gets or sets the return type of this function.</summary>
|
2553
|
+
<returns>The return type of this function.</returns>
|
2554
|
+
</member>
|
2555
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmFunctionImport">
|
2556
|
+
<summary>Represents an EDM function import.</summary>
|
2557
|
+
</member>
|
2558
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunctionImport.#ctor(System.String,Microsoft.Data.Edm.IEdmTypeReference)">
|
2559
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmFunctionImport" /> class.</summary>
|
2560
|
+
<param name="name">Name of the function.</param>
|
2561
|
+
<param name="returnType">Return type of the function.</param>
|
2562
|
+
</member>
|
2563
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionImport.Bindable">
|
2564
|
+
<summary>Gets or sets a value indicating whether this function import can be used as an extension method for the type of the first parameter of this function import.</summary>
|
2565
|
+
<returns>True if this function import is bindable; otherwise, false.</returns>
|
2566
|
+
</member>
|
2567
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionImport.Composable">
|
2568
|
+
<summary>Gets or sets a value indicating whether this functon import can be composed inside expressions. <see cref="P:Microsoft.Data.Edm.Library.EdmFunctionImport.Composable" /> cannot be set to true if <see cref="P:Microsoft.Data.Edm.Library.EdmFunctionImport.Composable" /> is set to true.</summary>
|
2569
|
+
<returns>True if this function import can be composed inside expressions; otherwise, false.</returns>
|
2570
|
+
</member>
|
2571
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionImport.ContainerElementKind">
|
2572
|
+
<summary>Gets the kind of this function, which is always FunctionImport.</summary>
|
2573
|
+
<returns>The kind of this function.</returns>
|
2574
|
+
</member>
|
2575
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionImport.EntitySet">
|
2576
|
+
<summary>Gets or sets the entity set of this function.</summary>
|
2577
|
+
<returns>The entity set of this function.</returns>
|
2578
|
+
</member>
|
2579
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionImport.EntitySetPath">
|
2580
|
+
<summary>Gets or sets the entity set path of the function import.</summary>
|
2581
|
+
<returns>The entity set path of the function import.</returns>
|
2582
|
+
</member>
|
2583
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionImport.SideEffecting">
|
2584
|
+
<summary>Gets or sets a value indicating whether this function import has side-effects. <see cref="P:Microsoft.Data.Edm.Library.EdmFunctionImport.SideEffecting" /> cannot be set to true if <see cref="P:Microsoft.Data.Edm.Library.EdmFunctionImport.SideEffecting" /> is set to true.</summary>
|
2585
|
+
<returns>True if this function import has side effects; otherwise, false.</returns>
|
2586
|
+
</member>
|
2587
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmFunctionParameter">
|
2588
|
+
<summary>Represents an EDM function parameter.</summary>
|
2589
|
+
</member>
|
2590
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunctionParameter.#ctor(System.String,Microsoft.Data.Edm.IEdmTypeReference)">
|
2591
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmFunctionParameter" /> class.</summary>
|
2592
|
+
<param name="name">Name of the parameter.</param>
|
2593
|
+
<param name="type">Type of the parameter.</param>
|
2594
|
+
</member>
|
2595
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmFunctionParameter.#ctor(System.String,Microsoft.Data.Edm.IEdmTypeReference,Microsoft.Data.Edm.EdmFunctionParameterMode)">
|
2596
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmFunctionParameter" /> class.</summary>
|
2597
|
+
<param name="name">Name of the parameter.</param>
|
2598
|
+
<param name="type">Type of the parameter.</param>
|
2599
|
+
<param name="mode">Mode of the parameter.</param>
|
2600
|
+
</member>
|
2601
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionParameter.Mode">
|
2602
|
+
<summary>Gets the mode of this parameter.</summary>
|
2603
|
+
<returns>The mode of this parameter.</returns>
|
2604
|
+
</member>
|
2605
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmFunctionParameter.Type">
|
2606
|
+
<summary>Gets the type of this parameter.</summary>
|
2607
|
+
<returns>The type of this parameter.</returns>
|
2608
|
+
</member>
|
2609
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmGuidValue">
|
2610
|
+
<summary>Represents an EDM Guid value.</summary>
|
2611
|
+
</member>
|
2612
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmGuidValue.#ctor(Microsoft.Data.Edm.IEdmPrimitiveTypeReference,System.Guid)">
|
2613
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmGuidValue" /> class.</summary>
|
2614
|
+
<param name="type">Type of the integer.</param>
|
2615
|
+
<param name="value">Integer value represented by this value.</param>
|
2616
|
+
</member>
|
2617
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmGuidValue.Value">
|
2618
|
+
<summary>Gets the definition of this value.</summary>
|
2619
|
+
<returns>The definition of this value.</returns>
|
2620
|
+
</member>
|
2621
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmImmediateValueAnnotation">
|
2622
|
+
<summary>Represents an EDM annotation with an immediate value.</summary>
|
2623
|
+
</member>
|
2624
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmImmediateValueAnnotation.#ctor(System.String,System.String,System.Object)">
|
2625
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmImmediateValueAnnotation" /> class.</summary>
|
2626
|
+
<param name="namespaceName">Namespace of the annotation.</param>
|
2627
|
+
<param name="localName">Name of the annotation within the namespace.</param>
|
2628
|
+
<param name="value">Value of the annotation.</param>
|
2629
|
+
</member>
|
2630
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmImmediateValueAnnotation.AnnotationKind">
|
2631
|
+
<summary>Gets the kind of this annotation.</summary>
|
2632
|
+
<returns>The kind of this annotation.</returns>
|
2633
|
+
</member>
|
2634
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmImmediateValueAnnotation.Term">
|
2635
|
+
<summary>Gets the term of this annotation.</summary>
|
2636
|
+
<returns>The term of this annotation.</returns>
|
2637
|
+
</member>
|
2638
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmImmediateValueAnnotation.Value">
|
2639
|
+
<summary>Gets the value of this annotation.</summary>
|
2640
|
+
<returns>The value of this annotation.</returns>
|
2641
|
+
</member>
|
2642
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmIntegerValue">
|
2643
|
+
<summary>Represents an EDM integer value.</summary>
|
2644
|
+
</member>
|
2645
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmIntegerValue.#ctor(Microsoft.Data.Edm.IEdmPrimitiveTypeReference,System.Int64)">
|
2646
|
+
<summary> Initializes a new instance of the EdmIntegerValue class. </summary>
|
2647
|
+
<param name="type">Type of the integer.</param>
|
2648
|
+
<param name="value">Integer value represented by this value.</param>
|
2649
|
+
</member>
|
2650
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmIntegerValue.Value">
|
2651
|
+
<summary>Gets the definition of this value.</summary>
|
2652
|
+
<returns>The definition of this value.</returns>
|
2653
|
+
</member>
|
2654
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmModel">
|
2655
|
+
<summary>Represents an EDM model.</summary>
|
2656
|
+
</member>
|
2657
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModel.#ctor">
|
2658
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmModel" /> class.</summary>
|
2659
|
+
</member>
|
2660
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModel.AddElement(Microsoft.Data.Edm.IEdmSchemaElement)">
|
2661
|
+
<summary>Adds a schema element to this model.</summary>
|
2662
|
+
<param name="element">The element to be added.</param>
|
2663
|
+
</member>
|
2664
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModel.AddElements(System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.IEdmSchemaElement})">
|
2665
|
+
<summary>Adds a collection of schema elements to this model.</summary>
|
2666
|
+
<param name="newElements">The elements to be added.</param>
|
2667
|
+
</member>
|
2668
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModel.RemoveElement(Microsoft.Data.Edm.IEdmSchemaElement)">
|
2669
|
+
<summary>Removes a schema element from this model.</summary>
|
2670
|
+
<param name="element">The element to be removed.</param>
|
2671
|
+
</member>
|
2672
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModel.RemoveEntityContainer(Microsoft.Data.Edm.IEdmEntityContainer)">
|
2673
|
+
<summary>Removes an entity container from this model.</summary>
|
2674
|
+
<param name="container">The container to be removed.</param>
|
2675
|
+
</member>
|
2676
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmModel.SchemaElements">
|
2677
|
+
<summary>Gets the collection of schema elements that are contained in this model.</summary>
|
2678
|
+
<returns>The collection of schema elements.</returns>
|
2679
|
+
</member>
|
2680
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmModelBase">
|
2681
|
+
<summary>Represents an EDM model.</summary>
|
2682
|
+
</member>
|
2683
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModelBase.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.IEdmModel})">
|
2684
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmModelBase" /> class.</summary>
|
2685
|
+
<param name="references">The Models to which this model refers.</param>
|
2686
|
+
</member>
|
2687
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModelBase.AddEntityContainer(Microsoft.Data.Edm.IEdmEntityContainer)">
|
2688
|
+
<summary>Adds an entity container to this model.</summary>
|
2689
|
+
<param name="container">The entity container to add.</param>
|
2690
|
+
</member>
|
2691
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmModelBase.ContainersDictionary">
|
2692
|
+
<summary>Gets a dictionary of entity containers contained in this model.</summary>
|
2693
|
+
<returns>A dictionary of entity containers contained in this model.</returns>
|
2694
|
+
</member>
|
2695
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmModelBase.EntityContainers">
|
2696
|
+
<summary>Gets the collection of entity containers in this model.</summary>
|
2697
|
+
<returns>The collection of entity containers in this model.</returns>
|
2698
|
+
</member>
|
2699
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmModelBase.EntityContainersList">
|
2700
|
+
<summary>Gets the collection of entity containers contained in this model.</summary>
|
2701
|
+
<returns>The collection of entity containers contained in this model.</returns>
|
2702
|
+
</member>
|
2703
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModelBase.FindAssociation(System.String)">
|
2704
|
+
<summary>Searches for an association with the given name in this model and returns null if no such association exists.</summary>
|
2705
|
+
<returns>The requested association, or null if no such type exists.</returns>
|
2706
|
+
<param name="qualifiedName">The qualified name of the type being found.</param>
|
2707
|
+
</member>
|
2708
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModelBase.FindEntityContainer(System.String)">
|
2709
|
+
<summary>Searches for an entity container with the given name in this model and returns null if no such entity container exists.</summary>
|
2710
|
+
<returns>The requested entity container, or null if no such entity container exists.</returns>
|
2711
|
+
<param name="name">The name of the entity container being found.</param>
|
2712
|
+
</member>
|
2713
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModelBase.FindFunctions(System.String)">
|
2714
|
+
<summary>Searches for a function with the given name in this model and returns null if no such function exists.</summary>
|
2715
|
+
<returns>A group of functions sharing the specified qualified name, or an empty enumerable if no such function exists.</returns>
|
2716
|
+
<param name="qualifiedName">The qualified name of the function being found.</param>
|
2717
|
+
</member>
|
2718
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModelBase.FindType(System.String)">
|
2719
|
+
<summary>Searches for a type with the given name in this model and returns null if no such type exists.</summary>
|
2720
|
+
<returns>The requested type, or null if no such type exists.</returns>
|
2721
|
+
<param name="qualifiedName">The qualified name of the type being found.</param>
|
2722
|
+
</member>
|
2723
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModelBase.FindValueTerm(System.String)">
|
2724
|
+
<summary>Searches for a value term with the given name in this model and returns null if no such value term exists.</summary>
|
2725
|
+
<returns>The requested value term, or null if no such value term exists.</returns>
|
2726
|
+
<param name="qualifiedName">The qualified name of the value term being found.</param>
|
2727
|
+
</member>
|
2728
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModelBase.FindVocabularyAnnotations(Microsoft.Data.Edm.IEdmAnnotatable)">
|
2729
|
+
<summary>Searches for vocabulary annotations specified by this model or a referenced model for a given element.</summary>
|
2730
|
+
<returns>The vocabulary annotations for the element.</returns>
|
2731
|
+
<param name="element">The annotated element.</param>
|
2732
|
+
</member>
|
2733
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmModelBase.References">
|
2734
|
+
<summary>Gets the collection of models referred to by this model.</summary>
|
2735
|
+
<returns>The collection of models referred to by this model.</returns>
|
2736
|
+
</member>
|
2737
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModelBase.RegisterElement(Microsoft.Data.Edm.IEdmSchemaElement)">
|
2738
|
+
<summary>Adds a schema element to this model.</summary>
|
2739
|
+
<param name="element">The element to register.</param>
|
2740
|
+
</member>
|
2741
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmModelBase.SchemaElements">
|
2742
|
+
<summary>Gets the collection of schema elements that are contained in this model.</summary>
|
2743
|
+
<returns>The collection of schema elements that are contained in this model.</returns>
|
2744
|
+
</member>
|
2745
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmModelBase.UnregisterElement(Microsoft.Data.Edm.IEdmSchemaElement)">
|
2746
|
+
<summary>Removes a schema element from this model.</summary>
|
2747
|
+
<param name="element">The element to deregister.</param>
|
2748
|
+
</member>
|
2749
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmModelBase.VocabularyAnnotations">
|
2750
|
+
<summary>Gets the collection of vocabulary annotations that are contained in this model.</summary>
|
2751
|
+
<returns>The collection of vocabulary annotations that are contained in this model.</returns>
|
2752
|
+
</member>
|
2753
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmNamedElement">
|
2754
|
+
<summary>Represents a common base class for all named EDM elements.</summary>
|
2755
|
+
</member>
|
2756
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmNamedElement.#ctor">
|
2757
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmNamedElement" /> class.</summary>
|
2758
|
+
</member>
|
2759
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmNamedElement.#ctor(System.String)">
|
2760
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmNamedElement" /> class.</summary>
|
2761
|
+
<param name="name">The name of the element.</param>
|
2762
|
+
</member>
|
2763
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmNamedElement.elementName">
|
2764
|
+
<summary>The name of the element.</summary>
|
2765
|
+
</member>
|
2766
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNamedElement.Name">
|
2767
|
+
<summary>Gets the name of this element.</summary>
|
2768
|
+
<returns>The name of this element.</returns>
|
2769
|
+
</member>
|
2770
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmNavigationProperty">
|
2771
|
+
<summary>Represents an EDM navigation property.</summary>
|
2772
|
+
</member>
|
2773
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmNavigationProperty.#ctor(Microsoft.Data.Edm.IEdmEntityType)">
|
2774
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmNavigationProperty" /> class.</summary>
|
2775
|
+
<param name="declaringType">The type that declares this navigation property.</param>
|
2776
|
+
</member>
|
2777
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmNavigationProperty.#ctor(Microsoft.Data.Edm.IEdmEntityType,System.String,Microsoft.Data.Edm.IEdmTypeReference,Microsoft.Data.Edm.EdmOnDeleteAction)">
|
2778
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmNavigationProperty" /> class.</summary>
|
2779
|
+
<param name="declaringType">The type that declares this navigation property.</param>
|
2780
|
+
<param name="name">Name of the navigation property.</param>
|
2781
|
+
<param name="type">Type that this navigation property points to.</param>
|
2782
|
+
<param name="onDelete">Action to take upon deleting the declaring type.</param>
|
2783
|
+
</member>
|
2784
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNavigationProperty.DeclaringEntityType">
|
2785
|
+
<summary>Gets the entity type that this navigation property belongs to.</summary>
|
2786
|
+
<returns>The entity type that this navigation property belongs to.</returns>
|
2787
|
+
</member>
|
2788
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNavigationProperty.DependentProperties">
|
2789
|
+
<summary>Gets or sets the dependent properties of the association this navigation property expresses.</summary>
|
2790
|
+
<returns>The dependent properties of the association this navigation property expresses.</returns>
|
2791
|
+
</member>
|
2792
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNavigationProperty.IsFromPrincipal">
|
2793
|
+
<summary>Gets a value indicating whether this navigation property is from the principal end of the association.</summary>
|
2794
|
+
<returns>True if the navigation property is from the principal end of the association; otherwise, false.</returns>
|
2795
|
+
</member>
|
2796
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNavigationProperty.Microsoft#Data#Edm#IEdmAssociationEnd#DeclaringAssociation">
|
2797
|
+
<summary>Gets the declaring association for this navigation property.</summary>
|
2798
|
+
<returns>The declaring association for this navigation property.</returns>
|
2799
|
+
</member>
|
2800
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNavigationProperty.Microsoft#Data#Edm#IEdmAssociationEnd#EntityType">
|
2801
|
+
<summary>Gets the entity type for this navigation property.</summary>
|
2802
|
+
<returns>The entity type for this navigation property.</returns>
|
2803
|
+
</member>
|
2804
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNavigationProperty.Microsoft#Data#Edm#IEdmAssociationEnd#Multiplicity">
|
2805
|
+
<summary>Gets the multiplicity for this navigation property.</summary>
|
2806
|
+
<returns>The multiplicity for this navigation property.</returns>
|
2807
|
+
</member>
|
2808
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNavigationProperty.Microsoft#Data#Edm#IEdmNavigationProperty#To">
|
2809
|
+
<summary>Gets the destination target for this navigation property.</summary>
|
2810
|
+
<returns>The destination target for this navigation property.</returns>
|
2811
|
+
</member>
|
2812
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNavigationProperty.OnDelete">
|
2813
|
+
<summary>Gets or sets the action to take when an element of the defining type is deleted.</summary>
|
2814
|
+
<returns>The action to take when an element of the defining type is deleted.</returns>
|
2815
|
+
</member>
|
2816
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNavigationProperty.Partner">
|
2817
|
+
<summary>Gets or sets the navigation property from this properties destination back to the declaring type of this property.</summary>
|
2818
|
+
<returns>The navigation property from this properties destination back to the declaring type of this property.</returns>
|
2819
|
+
</member>
|
2820
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmNavigationProperty.PropertyKind">
|
2821
|
+
<summary>Gets the kind of this property.</summary>
|
2822
|
+
<returns>The kind of this property.</returns>
|
2823
|
+
</member>
|
2824
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmPrimitiveTypeReference">
|
2825
|
+
<summary>Represents a reference to an EDM primitive type.</summary>
|
2826
|
+
</member>
|
2827
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmPrimitiveTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean)">
|
2828
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmPrimitiveTypeReference" /> class.</summary>
|
2829
|
+
<param name="definition">The type this reference refers to.</param>
|
2830
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2831
|
+
</member>
|
2832
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmProperty">
|
2833
|
+
<summary>Represents an EDM property.</summary>
|
2834
|
+
</member>
|
2835
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmProperty.#ctor(Microsoft.Data.Edm.IEdmStructuredType)">
|
2836
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmProperty" /> class.</summary>
|
2837
|
+
<param name="declaringType">The type that declares this property.</param>
|
2838
|
+
</member>
|
2839
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmProperty.#ctor(Microsoft.Data.Edm.IEdmStructuredType,System.String,Microsoft.Data.Edm.IEdmTypeReference)">
|
2840
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmProperty" /> class.</summary>
|
2841
|
+
<param name="declaringType">The type that declares this property.</param>
|
2842
|
+
<param name="name">Name of the property.</param>
|
2843
|
+
<param name="type">Type of the property.</param>
|
2844
|
+
</member>
|
2845
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmProperty.DeclaringType">
|
2846
|
+
<summary>Gets the type that this property belongs to.</summary>
|
2847
|
+
<returns>The type that this property belongs to.</returns>
|
2848
|
+
</member>
|
2849
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmProperty.Name">
|
2850
|
+
<summary>Gets or sets the name of this property.</summary>
|
2851
|
+
<returns>The name of this property.</returns>
|
2852
|
+
</member>
|
2853
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmProperty.PropertyKind">
|
2854
|
+
<summary>Gets the kind of this property.</summary>
|
2855
|
+
<returns>The kind of this property.</returns>
|
2856
|
+
</member>
|
2857
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmProperty.Type">
|
2858
|
+
<summary>Gets or sets the type of this property.</summary>
|
2859
|
+
<returns>The type of this property.</returns>
|
2860
|
+
</member>
|
2861
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmPropertyValue">
|
2862
|
+
<summary>Represents a value of an EDM property.</summary>
|
2863
|
+
</member>
|
2864
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmPropertyValue.#ctor(Microsoft.Data.Edm.IEdmProperty,Microsoft.Data.Edm.IEdmValue)">
|
2865
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmPropertyValue" /> class.</summary>
|
2866
|
+
<param name="property">Property describing the this value.</param>
|
2867
|
+
<param name="value">Value represented by this value.</param>
|
2868
|
+
</member>
|
2869
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmPropertyValue.Property">
|
2870
|
+
<summary>Gets the property that corresponds to this property value.</summary>
|
2871
|
+
</member>
|
2872
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmPropertyValue.Value">
|
2873
|
+
<summary>Gets the definition of this value.</summary>
|
2874
|
+
</member>
|
2875
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmRowType">
|
2876
|
+
<summary>Represents a definition of an EDM row type.</summary>
|
2877
|
+
</member>
|
2878
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmRowType.#ctor">
|
2879
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmRowType" />class.</summary>
|
2880
|
+
</member>
|
2881
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmRowType.SetBaseType(Microsoft.Data.Edm.IEdmStructuredType)">
|
2882
|
+
<summary>Ensures the new base type is the correct type and sets the base type of the instance.</summary>
|
2883
|
+
<param name="newBaseType">New base type for this type.</param>
|
2884
|
+
</member>
|
2885
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmRowTypeReference">
|
2886
|
+
<summary>Represents a reference to an EDM row type.</summary>
|
2887
|
+
</member>
|
2888
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmRowTypeReference.#ctor(Microsoft.Data.Edm.IEdmRowType,System.Boolean)">
|
2889
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmRowTypeReference" /> class.</summary>
|
2890
|
+
<param name="rowType">Type that describes this value.</param>
|
2891
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2892
|
+
</member>
|
2893
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmRowValue">
|
2894
|
+
<summary>Represents an EDM row value.</summary>
|
2895
|
+
</member>
|
2896
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmRowValue.#ctor(Microsoft.Data.Edm.IEdmRowTypeReference,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.IEdmPropertyValue})">
|
2897
|
+
<summary>Initializes a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmRowValue" />class.</summary>
|
2898
|
+
<param name="type">Row type that describes this value.</param>
|
2899
|
+
<param name="propertyValues">Collection of child values.</param>
|
2900
|
+
</member>
|
2901
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmSpatialTypeReference">
|
2902
|
+
<summary>Represents a reference to an EDM spatial type.</summary>
|
2903
|
+
</member>
|
2904
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmSpatialTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean)">
|
2905
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmSpatialTypeReference" /> class.</summary>
|
2906
|
+
<param name="definition">The type this reference refers to.</param>
|
2907
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2908
|
+
</member>
|
2909
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmSpatialTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean,System.Nullable{System.Int32})">
|
2910
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmSpatialTypeReference" /> class.</summary>
|
2911
|
+
<param name="definition">The type this reference refers to.</param>
|
2912
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2913
|
+
<param name="spatialReferenceIdentifier">Spatial Reference Identifier for the spatial type being created.</param>
|
2914
|
+
</member>
|
2915
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmSpatialTypeReference.SpatialReferenceIdentifier">
|
2916
|
+
<summary>Gets the precision of this temporal type.</summary>
|
2917
|
+
<returns>The precision of this temporal type.</returns>
|
2918
|
+
</member>
|
2919
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmStringTypeReference">
|
2920
|
+
<summary>Represents a reference to an EDM string type.</summary>
|
2921
|
+
</member>
|
2922
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStringTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean)">
|
2923
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmStringTypeReference" /> class.</summary>
|
2924
|
+
<param name="definition">The type this reference refers to.</param>
|
2925
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2926
|
+
</member>
|
2927
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStringTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean,System.Boolean,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String)">
|
2928
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmStringTypeReference" /> class.</summary>
|
2929
|
+
<param name="definition">The type this reference refers to.</param>
|
2930
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
2931
|
+
<param name="isMaxMaxLength">Denotes whether the max length is the maximum allowed value.</param>
|
2932
|
+
<param name="maxLength">Maximum length of a value of this type.</param>
|
2933
|
+
<param name="isFixedLength">Denotes whether the length can vary.</param>
|
2934
|
+
<param name="isUnicode">Denotes if string is encoded using Unicode.</param>
|
2935
|
+
<param name="collation">Indicates the collation string to be used by the underlying store.</param>
|
2936
|
+
</member>
|
2937
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStringTypeReference.Collation">
|
2938
|
+
<summary>Gets a string representing the collation of this string type.</summary>
|
2939
|
+
<returns>The collation of this string type.</returns>
|
2940
|
+
</member>
|
2941
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStringTypeReference.IsFixedLength">
|
2942
|
+
<summary>Gets a value indicating whether this string type specifies fixed length.</summary>
|
2943
|
+
<returns>True if this string type specifies fixed length; otherwise, false.</returns>
|
2944
|
+
</member>
|
2945
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStringTypeReference.IsMaxMaxLength">
|
2946
|
+
<summary>Gets a value indicating whether this string type specifies the maximum allowed max length.</summary>
|
2947
|
+
<returns>True if this string type specifies the maximum allowed max length; otherwise, false.</returns>
|
2948
|
+
</member>
|
2949
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStringTypeReference.IsUnicode">
|
2950
|
+
<summary>Gets a value indicating whether this string type supports unicode encoding.</summary>
|
2951
|
+
<returns>True if this string type supports Unicode encoding; otherwise, false.</returns>
|
2952
|
+
</member>
|
2953
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStringTypeReference.MaxLength">
|
2954
|
+
<summary>Gets the maximum length of this string type.</summary>
|
2955
|
+
<returns>The maximum length of this string type.</returns>
|
2956
|
+
</member>
|
2957
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmStringValue">
|
2958
|
+
<summary>Represents an EDM string value.</summary>
|
2959
|
+
</member>
|
2960
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStringValue.#ctor(Microsoft.Data.Edm.IEdmStringTypeReference,System.String)">
|
2961
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmStringValue" /> class. </summary>
|
2962
|
+
<param name="type">Type of the string.</param>
|
2963
|
+
<param name="value">String value represented by this value.</param>
|
2964
|
+
</member>
|
2965
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStringValue.Value">
|
2966
|
+
<summary>Gets the definition of this value.</summary>
|
2967
|
+
<returns>The definition of this value.</returns>
|
2968
|
+
</member>
|
2969
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmStructuralProperty">
|
2970
|
+
<summary>Represents an EDM structural (i.e. non-navigation) property.</summary>
|
2971
|
+
</member>
|
2972
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuralProperty.#ctor(Microsoft.Data.Edm.IEdmStructuredType)">
|
2973
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmStructuralProperty" /> class.</summary>
|
2974
|
+
<param name="declaringType">The type that declares this property.</param>
|
2975
|
+
</member>
|
2976
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuralProperty.#ctor(Microsoft.Data.Edm.IEdmStructuredType,System.String,Microsoft.Data.Edm.IEdmTypeReference,System.String,Microsoft.Data.Edm.EdmConcurrencyMode)">
|
2977
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmStructuralProperty" /> class.</summary>
|
2978
|
+
<param name="declaringType">The type that declares this property.</param>
|
2979
|
+
<param name="name">The name of the property.</param>
|
2980
|
+
<param name="type">The type of the property.</param>
|
2981
|
+
<param name="defaultValue">The default value of this property.</param>
|
2982
|
+
<param name="concurrencyMode">The concurrency mode of this property.</param>
|
2983
|
+
</member>
|
2984
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStructuralProperty.ConcurrencyMode">
|
2985
|
+
<summary>Gets the concurrency mode of this property.</summary>
|
2986
|
+
<returns>The concurrency mode of this property.</returns>
|
2987
|
+
</member>
|
2988
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStructuralProperty.DefaultValue">
|
2989
|
+
<summary>Gets the default value of this property.</summary>
|
2990
|
+
<returns>The default value of this property.</returns>
|
2991
|
+
</member>
|
2992
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStructuralProperty.PropertyKind">
|
2993
|
+
<summary>Gets the kind of this property.</summary>
|
2994
|
+
<returns>The kind of this property.</returns>
|
2995
|
+
</member>
|
2996
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmStructuredType">
|
2997
|
+
<summary>Represents a common base class for definitions of EDM structured types.</summary>
|
2998
|
+
</member>
|
2999
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuredType.#ctor(Microsoft.Data.Edm.EdmTypeKind)">
|
3000
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmStructuredType" /> class.</summary>
|
3001
|
+
<param name="kind">The kind of the type definition.</param>
|
3002
|
+
</member>
|
3003
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuredType.#ctor(Microsoft.Data.Edm.EdmTypeKind,System.Boolean,System.Boolean,Microsoft.Data.Edm.IEdmStructuredType)">
|
3004
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmStructuredType" /> class.</summary>
|
3005
|
+
<param name="kind">The kind of the type definition.</param>
|
3006
|
+
<param name="isAbstract">Denotes a structured type that cannot be instantiated.</param>
|
3007
|
+
<param name="isOpen">Denotes if the type is open.</param>
|
3008
|
+
<param name="baseStructuredType">Base type of the type.</param>
|
3009
|
+
</member>
|
3010
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuredType.AddProperty(Microsoft.Data.Edm.IEdmProperty)">
|
3011
|
+
<summary>Adds the property to this type. <see cref="P:Microsoft.Data.Edm.IEdmProperty.DeclaringType" /> of the property must be this type. </summary>
|
3012
|
+
<param name="property">The property being added.</param>
|
3013
|
+
</member>
|
3014
|
+
<member name="F:Microsoft.Data.Edm.Library.EdmStructuredType.baseStructuredType">
|
3015
|
+
<summary>Intended base type of this type.</summary>
|
3016
|
+
</member>
|
3017
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStructuredType.BaseType">
|
3018
|
+
<summary>Gets or sets the base type of this type.</summary>
|
3019
|
+
<returns>The base type of this type.</returns>
|
3020
|
+
</member>
|
3021
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuredType.ComputeCycleBaseType">
|
3022
|
+
<summary>Computes the type to return if a cycle is detected in the base type hierarchy.</summary>
|
3023
|
+
<returns>The bad type to stand in for the base type in case of a cycle.</returns>
|
3024
|
+
</member>
|
3025
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuredType.ComputePropertiesDictionary">
|
3026
|
+
<summary>Computes the cached dictionary of properties for this type definition.</summary>
|
3027
|
+
<returns>The dictionary of properties keyed by their name.</returns>
|
3028
|
+
</member>
|
3029
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStructuredType.DeclaredProperties">
|
3030
|
+
<summary>Gets the properties declared immediately within this type.</summary>
|
3031
|
+
<returns>The properties declared immediately within this type.</returns>
|
3032
|
+
</member>
|
3033
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuredType.FindProperty(System.String)">
|
3034
|
+
<summary>Searches for a structural or navigation property with the given name in this type and all base types and returns null if no such property exists.</summary>
|
3035
|
+
<returns>The requested property, or null if no such property exists.</returns>
|
3036
|
+
<param name="name">The name of the property being found.</param>
|
3037
|
+
</member>
|
3038
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStructuredType.IsAbstract">
|
3039
|
+
<summary>Gets or sets a value indicating whether this type is abstract.</summary>
|
3040
|
+
<returns>True if this type is abstract; otherwise, false.</returns>
|
3041
|
+
</member>
|
3042
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStructuredType.IsOpen">
|
3043
|
+
<summary>Gets or sets a value indicating whether this type is open.</summary>
|
3044
|
+
<returns>True if this type is open; otherwise, false.</returns>
|
3045
|
+
</member>
|
3046
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStructuredType.PropertiesDictionary">
|
3047
|
+
<summary>Gets a dictionary of the properties in this type definition for faster lookup.</summary>
|
3048
|
+
<returns>A dictionary of the properties in this type definition for faster lookup.</returns>
|
3049
|
+
</member>
|
3050
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuredType.RemoveProperty(Microsoft.Data.Edm.IEdmProperty)">
|
3051
|
+
<summary>Removes a property from this type.</summary>
|
3052
|
+
<param name="property">The property being removed.</param>
|
3053
|
+
</member>
|
3054
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuredType.SetBaseType(Microsoft.Data.Edm.IEdmStructuredType)">
|
3055
|
+
<summary>Ensures the new base type is the correct type and sets the base type of the instance.</summary>
|
3056
|
+
<param name="newBaseType">The new base type for this type.</param>
|
3057
|
+
</member>
|
3058
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmStructuredValue">
|
3059
|
+
<summary>Represents an EDM structured value.</summary>
|
3060
|
+
</member>
|
3061
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuredValue.#ctor(Microsoft.Data.Edm.IEdmStructuredTypeReference,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.IEdmPropertyValue})">
|
3062
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmStructuredValue" /> class.</summary>
|
3063
|
+
<param name="type">The type that describes this value.</param>
|
3064
|
+
<param name="propertyValues">The child values of this value.</param>
|
3065
|
+
</member>
|
3066
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmStructuredValue.FindPropertyValue(Microsoft.Data.Edm.IEdmProperty)">
|
3067
|
+
<summary>Retrieves the value corresponding to the given property. Returns null if no such value exists.</summary>
|
3068
|
+
<returns>The requested value, or null if no such value exists.</returns>
|
3069
|
+
<param name="property">The property that describes the value being found.</param>
|
3070
|
+
</member>
|
3071
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmStructuredValue.PropertyValues">
|
3072
|
+
<summary>Gets the property values of this structured value.</summary>
|
3073
|
+
<returns>The property values of this structured value.</returns>
|
3074
|
+
</member>
|
3075
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmTemporalTypeReference">
|
3076
|
+
<summary>Represents a reference to an EDM temporal (Time, DateTime, DateTimeOffset) type.</summary>
|
3077
|
+
</member>
|
3078
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTemporalTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean)">
|
3079
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmTemporalTypeReference" /> class.</summary>
|
3080
|
+
<param name="definition">The type this reference refers to.</param>
|
3081
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
3082
|
+
</member>
|
3083
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTemporalTypeReference.#ctor(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean,System.Nullable{System.Int32})">
|
3084
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmTemporalTypeReference" /> class.</summary>
|
3085
|
+
<param name="definition">The type this reference refers to.</param>
|
3086
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
3087
|
+
<param name="precision">Precision of values with this type.</param>
|
3088
|
+
</member>
|
3089
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmTemporalTypeReference.Precision">
|
3090
|
+
<summary>Gets the precision of this temporal type.</summary>
|
3091
|
+
<returns>The precision of this temporal type.</returns>
|
3092
|
+
</member>
|
3093
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmTermName">
|
3094
|
+
<summary>Represents a URI-based qualified name.</summary>
|
3095
|
+
</member>
|
3096
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTermName.#ctor(System.String,System.String)">
|
3097
|
+
<summary>Creates new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmTermName" /> class.</summary>
|
3098
|
+
<param name="namespaceName">The namespace of the item.</param>
|
3099
|
+
<param name="localName">The name of the item within the namespace.</param>
|
3100
|
+
</member>
|
3101
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmTermName.LocalName">
|
3102
|
+
<summary>Gets the name of the item within the namespace.</summary>
|
3103
|
+
<returns>The name of the item within the namespace.</returns>
|
3104
|
+
</member>
|
3105
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmTermName.Namespace">
|
3106
|
+
<summary>Gets the namespace of the item.</summary>
|
3107
|
+
<returns>The namespace of the item.</returns>
|
3108
|
+
</member>
|
3109
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmType">
|
3110
|
+
<summary>Represents the definition of an EDM type.</summary>
|
3111
|
+
</member>
|
3112
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmType.#ctor(Microsoft.Data.Edm.EdmTypeKind)">
|
3113
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmType" /> class.</summary>
|
3114
|
+
<param name="kind">The kind of the type definition.</param>
|
3115
|
+
</member>
|
3116
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmType.ToString">
|
3117
|
+
<summary>Returns the text representation of the current object.</summary>
|
3118
|
+
<returns>The text representation of the current object.</returns>
|
3119
|
+
</member>
|
3120
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmType.TypeKind">
|
3121
|
+
<summary>Gets the kind of this type.</summary>
|
3122
|
+
<returns>The kind of this type.</returns>
|
3123
|
+
</member>
|
3124
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmTypeReference">
|
3125
|
+
<summary>Represents a reference to an EDM type.</summary>
|
3126
|
+
</member>
|
3127
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeReference.#ctor(Microsoft.Data.Edm.IEdmType,System.Boolean)">
|
3128
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmTypeReference" /> class.</summary>
|
3129
|
+
<param name="definition">The type that describes this value.</param>
|
3130
|
+
<param name="isNullable">Denotes whether the type can be nullable.</param>
|
3131
|
+
</member>
|
3132
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmTypeReference.Definition">
|
3133
|
+
<summary>Gets the definition to which this type refers.</summary>
|
3134
|
+
<returns>The definition to which this type refers.</returns>
|
3135
|
+
</member>
|
3136
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmTypeReference.IsNullable">
|
3137
|
+
<summary>Gets a value indicating whether this type is nullable.</summary>
|
3138
|
+
<returns>True if this type is nullable; otherwise, false.</returns>
|
3139
|
+
</member>
|
3140
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeReference.ToString">
|
3141
|
+
<summary>Returns the text representation of the current object.</summary>
|
3142
|
+
<returns>The text representation of the current object.</returns>
|
3143
|
+
</member>
|
3144
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmTypeSemantics">
|
3145
|
+
<summary>Provides semantics of the predefined EDM types.</summary>
|
3146
|
+
</member>
|
3147
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.ApplyType(Microsoft.Data.Edm.IEdmRowType,System.Boolean)">
|
3148
|
+
<summary>Returns a reference to this row type definition.</summary>
|
3149
|
+
<returns>A reference to this row type definition.</returns>
|
3150
|
+
<param name="rowType">The reference to the calling object.</param>
|
3151
|
+
<param name="isNullable">The flag specifying if the referenced type should be nullable.</param>
|
3152
|
+
</member>
|
3153
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsBinary(Microsoft.Data.Edm.IEdmTypeReference)">
|
3154
|
+
<summary>If this reference is of a binary type, this will return a valid binary type reference to the type definition. Otherwise, it will return a bad binary type reference.</summary>
|
3155
|
+
<returns>A valid binary type reference if the definition of the reference is of a binary type. Otherwise a bad binary type reference.</returns>
|
3156
|
+
<param name="type">The reference to the calling object.</param>
|
3157
|
+
</member>
|
3158
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsCollection(Microsoft.Data.Edm.IEdmTypeReference)">
|
3159
|
+
<summary>If this reference is of a collection type, this will return a valid collection type reference to the type definition. Otherwise, it will return a bad collection type reference.</summary>
|
3160
|
+
<returns>A valid collection type reference if the definition of the reference is of a collection type. Otherwise a bad collection type reference.</returns>
|
3161
|
+
<param name="type">The reference to the calling object.</param>
|
3162
|
+
</member>
|
3163
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsComplex(Microsoft.Data.Edm.IEdmTypeReference)">
|
3164
|
+
<summary>If this reference is of a complex type, this will return a valid complex type reference to the type definition. Otherwise, it will return a bad complex type reference.</summary>
|
3165
|
+
<returns>A valid complex type reference if the definition of the reference is of a complex type. Otherwise a bad complex type reference.</returns>
|
3166
|
+
<param name="type">The reference to the calling object.</param>
|
3167
|
+
</member>
|
3168
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsDecimal(Microsoft.Data.Edm.IEdmTypeReference)">
|
3169
|
+
<summary>If this reference is of a decimal type, this will return a valid decimal type reference to the type definition. Otherwise, it will return a bad decimal type reference.</summary>
|
3170
|
+
<returns>A valid decimal type reference if the definition of the reference is of a decimal type. Otherwise a bad decimal type reference.</returns>
|
3171
|
+
<param name="type">The reference to the calling object.</param>
|
3172
|
+
</member>
|
3173
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsEntity(Microsoft.Data.Edm.IEdmTypeReference)">
|
3174
|
+
<summary>If this reference is of an entity type, this will return a valid entity type reference to the type definition. Otherwise, it will return a bad entity type reference.</summary>
|
3175
|
+
<returns>A valid entity type reference if the definition of the reference is of an entity type. Otherwise a bad entity type reference.</returns>
|
3176
|
+
<param name="type">The reference to the calling object.</param>
|
3177
|
+
</member>
|
3178
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsEntityReference(Microsoft.Data.Edm.IEdmTypeReference)">
|
3179
|
+
<summary>If this reference is of an entity reference type, this will return a valid entity reference type reference to the type definition. Otherwise, it will return a bad entity reference type reference.</summary>
|
3180
|
+
<returns>A valid entity reference type reference if the definition of the reference is of an entity reference type. Otherwise a bad entity reference type reference.</returns>
|
3181
|
+
<param name="type">The reference to the calling object.</param>
|
3182
|
+
</member>
|
3183
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsEnum(Microsoft.Data.Edm.IEdmTypeReference)">
|
3184
|
+
<summary>If this reference is of an enumeration type, this will return a valid enumeration type reference to the type definition. Otherwise, it will return a bad enumeration type reference.</summary>
|
3185
|
+
<returns>A valid enumeration type reference if the definition of the reference is of an enumeration type. Otherwise a bad enumeration type reference.</returns>
|
3186
|
+
<param name="type">The reference to the calling object.</param>
|
3187
|
+
</member>
|
3188
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsPrimitive(Microsoft.Data.Edm.IEdmTypeReference)">
|
3189
|
+
<summary>If this reference is of a primitive type, this will return a valid primitive type reference to the type definition. Otherwise, it will return a bad primitive type reference.</summary>
|
3190
|
+
<returns>A valid primitive type reference if the definition of the reference is of a primitive type. Otherwise a bad primitive type reference.</returns>
|
3191
|
+
<param name="type">The reference to the calling object.</param>
|
3192
|
+
</member>
|
3193
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsRow(Microsoft.Data.Edm.IEdmTypeReference)">
|
3194
|
+
<summary>If this reference is of a row type, this will return a valid row type reference to the type definition. Otherwise, it will return a bad row type reference.</summary>
|
3195
|
+
<returns>A valid row type reference if the definition of the reference is of a row type. Otherwise a bad row type reference.</returns>
|
3196
|
+
<param name="type">The reference to the calling object.</param>
|
3197
|
+
</member>
|
3198
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsSpatial(Microsoft.Data.Edm.IEdmTypeReference)">
|
3199
|
+
<summary>If this reference is of a spatial type, this will return a valid spatial type reference to the type definition. Otherwise, it will return a bad spatial type reference.</summary>
|
3200
|
+
<returns>A valid spatial type reference if the definition of the reference is of a spatial type. Otherwise a bad spatial type reference.</returns>
|
3201
|
+
<param name="type">The reference to the calling object.</param>
|
3202
|
+
</member>
|
3203
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsString(Microsoft.Data.Edm.IEdmTypeReference)">
|
3204
|
+
<summary>If this reference is of a string type, this will return a valid string type reference to the type definition. Otherwise, it will return a bad string type reference.</summary>
|
3205
|
+
<returns>A valid string type reference if the definition of the reference is of a string type. Otherwise a bad string type reference.</returns>
|
3206
|
+
<param name="type">The reference to the calling object.</param>
|
3207
|
+
</member>
|
3208
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsStructured(Microsoft.Data.Edm.IEdmTypeReference)">
|
3209
|
+
<summary>If this reference is of a structured type, this will return a valid structured type reference to the type definition. Otherwise, it will return a bad structured type reference.</summary>
|
3210
|
+
<returns>A valid structured type reference if the definition of the reference is of a structured type. Otherwise a bad structured type reference.</returns>
|
3211
|
+
<param name="type">The reference to the calling object.</param>
|
3212
|
+
</member>
|
3213
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.AsTemporal(Microsoft.Data.Edm.IEdmTypeReference)">
|
3214
|
+
<summary>If this reference is of a temporal type, this will return a valid temporal type reference to the type definition. Otherwise, it will return a bad temporal type reference.</summary>
|
3215
|
+
<returns>A valid temporal type reference if the definition of the reference is of a temporal type. Otherwise a bad temporal type reference.</returns>
|
3216
|
+
<param name="type">The reference to the calling object.</param>
|
3217
|
+
</member>
|
3218
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.InheritsFrom(Microsoft.Data.Edm.IEdmStructuredType,Microsoft.Data.Edm.IEdmStructuredType)">
|
3219
|
+
<summary>Determines if the potential base type is in the inheritance hierarchy of the type being tested.</summary>
|
3220
|
+
<returns>True if the type inherits from the potential base type; otherwise, false.</returns>
|
3221
|
+
<param name="type">The reference to the calling object.</param>
|
3222
|
+
<param name="potentialBaseType">The potential base type of the type being tested.</param>
|
3223
|
+
</member>
|
3224
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsBinary(Microsoft.Data.Edm.IEdmTypeReference)">
|
3225
|
+
<summary>Returns true if this reference refers to a binary type.</summary>
|
3226
|
+
<returns>This reference refers to a binary type.</returns>
|
3227
|
+
<param name="type">The reference to the calling object.</param>
|
3228
|
+
</member>
|
3229
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsBoolean(Microsoft.Data.Edm.IEdmTypeReference)">
|
3230
|
+
<summary>Returns true if this reference refers to a boolean type.</summary>
|
3231
|
+
<returns>This reference refers to a boolean type.</returns>
|
3232
|
+
<param name="type">The reference to the calling object.</param>
|
3233
|
+
</member>
|
3234
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsByte(Microsoft.Data.Edm.IEdmTypeReference)">
|
3235
|
+
<summary>Returns true if this reference refers to a byte type.</summary>
|
3236
|
+
<returns>This reference refers to a byte type.</returns>
|
3237
|
+
<param name="type">The reference to the calling object.</param>
|
3238
|
+
</member>
|
3239
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsCollection(Microsoft.Data.Edm.IEdmTypeReference)">
|
3240
|
+
<summary>Returns true if this reference refers to a collection.</summary>
|
3241
|
+
<returns>This reference refers to a collection.</returns>
|
3242
|
+
<param name="type">The reference to the calling object.</param>
|
3243
|
+
</member>
|
3244
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsComplex(Microsoft.Data.Edm.IEdmTypeReference)">
|
3245
|
+
<summary>Returns true if this reference refers to a complex type.</summary>
|
3246
|
+
<returns>This reference refers to a complex type.</returns>
|
3247
|
+
<param name="type">The reference to the calling object.</param>
|
3248
|
+
</member>
|
3249
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsDateTime(Microsoft.Data.Edm.IEdmTypeReference)">
|
3250
|
+
<summary>Returns true if this reference refers to a DateTime type.</summary>
|
3251
|
+
<returns>This reference refers to a DateTime type.</returns>
|
3252
|
+
<param name="type">The reference to the calling object.</param>
|
3253
|
+
</member>
|
3254
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsDateTimeOffset(Microsoft.Data.Edm.IEdmTypeReference)">
|
3255
|
+
<summary>Returns true if this reference refers to a DateTimeOffset type.</summary>
|
3256
|
+
<returns>This reference refers to a DateTimeOffset type.</returns>
|
3257
|
+
<param name="type">The reference to the calling object.</param>
|
3258
|
+
</member>
|
3259
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsDecimal(Microsoft.Data.Edm.IEdmTypeReference)">
|
3260
|
+
<summary>Returns true if this reference refers to a decimal type.</summary>
|
3261
|
+
<returns>This reference refers to a decimal type.</returns>
|
3262
|
+
<param name="type">The reference to the calling object.</param>
|
3263
|
+
</member>
|
3264
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsDouble(Microsoft.Data.Edm.IEdmTypeReference)">
|
3265
|
+
<summary>Returns true if this reference refers to a double type.</summary>
|
3266
|
+
<returns>This reference refers to a double type.</returns>
|
3267
|
+
<param name="type">The reference to the calling object.</param>
|
3268
|
+
</member>
|
3269
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsEntity(Microsoft.Data.Edm.IEdmTypeReference)">
|
3270
|
+
<summary>Returns true if this reference refers to an entity type.</summary>
|
3271
|
+
<returns>This reference refers to an entity type.</returns>
|
3272
|
+
<param name="type">The reference to the calling object.</param>
|
3273
|
+
</member>
|
3274
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsEntityReference(Microsoft.Data.Edm.IEdmTypeReference)">
|
3275
|
+
<summary>Returns true if this reference refers to an entity type.</summary>
|
3276
|
+
<returns>This reference refers to an entity type.</returns>
|
3277
|
+
<param name="type">The reference to the calling object.</param>
|
3278
|
+
</member>
|
3279
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsEnum(Microsoft.Data.Edm.IEdmTypeReference)">
|
3280
|
+
<summary>Returns true if this reference refers to an enumeration type.</summary>
|
3281
|
+
<returns>This reference refers to an enumeration type.</returns>
|
3282
|
+
<param name="type">The reference to the calling object.</param>
|
3283
|
+
</member>
|
3284
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsEquivalentTo(Microsoft.Data.Edm.IEdmFunction,Microsoft.Data.Edm.IEdmFunction)">
|
3285
|
+
<summary>Returns true if the compared function is semantically equivalent to this function.</summary>
|
3286
|
+
<returns>The equivalence of the two functions.</returns>
|
3287
|
+
<param name="thisFunction">The reference to the calling object.</param>
|
3288
|
+
<param name="otherFunction">The function being compared to.</param>
|
3289
|
+
</member>
|
3290
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsEquivalentTo(Microsoft.Data.Edm.IEdmFunctionImport,Microsoft.Data.Edm.IEdmFunctionImport)">
|
3291
|
+
<summary>Returns true if the compared function import is semantically equivalent to this function import.</summary>
|
3292
|
+
<returns>The equivalence of the two function imports.</returns>
|
3293
|
+
<param name="thisFunction">The reference to the calling object.</param>
|
3294
|
+
<param name="otherFunction">The function import being compared to.</param>
|
3295
|
+
</member>
|
3296
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsEquivalentTo(Microsoft.Data.Edm.IEdmType,Microsoft.Data.Edm.IEdmType)">
|
3297
|
+
<summary>Returns true if the compared type is semantically equivalent to this type.</summary>
|
3298
|
+
<returns>The equivalence of the two types.</returns>
|
3299
|
+
<param name="thisType">The reference to the calling object.</param>
|
3300
|
+
<param name="otherType">The type being compared to.</param>
|
3301
|
+
</member>
|
3302
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsEquivalentTo(Microsoft.Data.Edm.IEdmTypeReference,Microsoft.Data.Edm.IEdmTypeReference)">
|
3303
|
+
<summary>Returns true if the compared type is semantically equivalent to this type.</summary>
|
3304
|
+
<returns>The equivalence of the two types.</returns>
|
3305
|
+
<param name="thisType">The reference to the calling object.</param>
|
3306
|
+
<param name="otherType">The type being compared to.</param>
|
3307
|
+
</member>
|
3308
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsFloating(Microsoft.Data.Edm.IEdmTypeReference)">
|
3309
|
+
<summary>Returns true if this reference refers to a floating point type.</summary>
|
3310
|
+
<returns>This reference refers to a floating point type.</returns>
|
3311
|
+
<param name="type">The reference to the calling object.</param>
|
3312
|
+
</member>
|
3313
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsGuid(Microsoft.Data.Edm.IEdmTypeReference)">
|
3314
|
+
<summary>Returns true if this reference refers to a GUID type.</summary>
|
3315
|
+
<returns>This reference refers to a GUID type.</returns>
|
3316
|
+
<param name="type">The reference to the calling object.</param>
|
3317
|
+
</member>
|
3318
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsInt16(Microsoft.Data.Edm.IEdmTypeReference)">
|
3319
|
+
<summary>Returns true if this reference refers to an Int16 type.</summary>
|
3320
|
+
<returns>This reference refers to an Int16 type.</returns>
|
3321
|
+
<param name="type">The reference to the calling object.</param>
|
3322
|
+
</member>
|
3323
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsInt32(Microsoft.Data.Edm.IEdmTypeReference)">
|
3324
|
+
<summary>Returns true if this reference refers to an Int32 type.</summary>
|
3325
|
+
<returns>This reference refers to an Int32 type.</returns>
|
3326
|
+
<param name="type">The reference to the calling object.</param>
|
3327
|
+
</member>
|
3328
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsInt64(Microsoft.Data.Edm.IEdmTypeReference)">
|
3329
|
+
<summary>Returns true if this reference refers to an Int64 type.</summary>
|
3330
|
+
<returns>This reference refers to an Int64 type.</returns>
|
3331
|
+
<param name="type">The reference to the calling object.</param>
|
3332
|
+
</member>
|
3333
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsPrimitive(Microsoft.Data.Edm.IEdmTypeReference)">
|
3334
|
+
<summary>Returns true if this reference refers to a primitive type.</summary>
|
3335
|
+
<returns>This reference refers to a primitive type.</returns>
|
3336
|
+
<param name="type">The reference to the calling object.</param>
|
3337
|
+
</member>
|
3338
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsRow(Microsoft.Data.Edm.IEdmTypeReference)">
|
3339
|
+
<summary>Returns true if this reference refers to a row type.</summary>
|
3340
|
+
<returns>This reference refers to a row type.</returns>
|
3341
|
+
<param name="type">The reference to the calling object.</param>
|
3342
|
+
</member>
|
3343
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsSByte(Microsoft.Data.Edm.IEdmTypeReference)">
|
3344
|
+
<summary>Returns true if this reference refers to an SByte type.</summary>
|
3345
|
+
<returns>This reference refers to an SByte type.</returns>
|
3346
|
+
<param name="type">The reference to the calling object.</param>
|
3347
|
+
</member>
|
3348
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsSignedIntegral(Microsoft.Data.Edm.IEdmTypeReference)">
|
3349
|
+
<summary>Returns true if this reference refers to a signed integral type.</summary>
|
3350
|
+
<returns>This reference refers to a signed integral type.</returns>
|
3351
|
+
<param name="type">The reference to the calling object.</param>
|
3352
|
+
</member>
|
3353
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsSingle(Microsoft.Data.Edm.IEdmTypeReference)">
|
3354
|
+
<summary>Returns true if this reference refers to a single type.</summary>
|
3355
|
+
<returns>This reference refers to a single type.</returns>
|
3356
|
+
<param name="type">The reference to the calling object.</param>
|
3357
|
+
</member>
|
3358
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsSpatial(Microsoft.Data.Edm.IEdmTypeReference)">
|
3359
|
+
<summary>Returns true if this reference refers to a spatial type.</summary>
|
3360
|
+
<returns>This reference refers to a spatial type.</returns>
|
3361
|
+
<param name="type">The reference to the calling object.</param>
|
3362
|
+
</member>
|
3363
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsStream(Microsoft.Data.Edm.IEdmTypeReference)">
|
3364
|
+
<summary>Returns true if this reference refers to a stream type.</summary>
|
3365
|
+
<returns>This reference refers to a stream type.</returns>
|
3366
|
+
<param name="type">The reference to the calling object.</param>
|
3367
|
+
</member>
|
3368
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsString(Microsoft.Data.Edm.IEdmTypeReference)">
|
3369
|
+
<summary>Returns true if this reference refers to a string type.</summary>
|
3370
|
+
<returns>This reference refers to a string type.</returns>
|
3371
|
+
<param name="type">The reference to the calling object.</param>
|
3372
|
+
</member>
|
3373
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsStructured(Microsoft.Data.Edm.IEdmTypeReference)">
|
3374
|
+
<summary>Returns true if this reference refers to a structured type.</summary>
|
3375
|
+
<returns>This reference refers to a structured type.</returns>
|
3376
|
+
<param name="type">The reference to the calling object.</param>
|
3377
|
+
</member>
|
3378
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsTemporal(Microsoft.Data.Edm.IEdmTypeReference)">
|
3379
|
+
<summary>Returns true if this reference refers to a temporal type.</summary>
|
3380
|
+
<returns>This reference refers to a temporal type.</returns>
|
3381
|
+
<param name="type">The reference to the calling object.</param>
|
3382
|
+
</member>
|
3383
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.IsTime(Microsoft.Data.Edm.IEdmTypeReference)">
|
3384
|
+
<summary>Returns true if this reference refers to a time type.</summary>
|
3385
|
+
<returns>This reference refers to a time type.</returns>
|
3386
|
+
<param name="type">The reference to the calling object.</param>
|
3387
|
+
</member>
|
3388
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.PrimitiveKind(Microsoft.Data.Edm.IEdmTypeReference)">
|
3389
|
+
<summary>Returns the primitive kind of the definition of this reference.</summary>
|
3390
|
+
<returns>The primitive kind of the definition of this reference.</returns>
|
3391
|
+
<param name="type">The reference to the calling object.</param>
|
3392
|
+
</member>
|
3393
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.ToTraceString(Microsoft.Data.Edm.IEdmType)">
|
3394
|
+
<summary>Returns the text representation of the current object.</summary>
|
3395
|
+
<returns>The text representation of the current object.</returns>
|
3396
|
+
<param name="type">The reference to the calling object.</param>
|
3397
|
+
</member>
|
3398
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmTypeSemantics.ToTraceString(Microsoft.Data.Edm.IEdmTypeReference)">
|
3399
|
+
<summary>Returns the text representation of the current object.</summary>
|
3400
|
+
<returns>The text representation of the current object.</returns>
|
3401
|
+
<param name="type">The reference to the calling object.</param>
|
3402
|
+
</member>
|
3403
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmValue">
|
3404
|
+
<summary>Represents an EDM value.</summary>
|
3405
|
+
</member>
|
3406
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmValue.#ctor(Microsoft.Data.Edm.IEdmTypeReference)">
|
3407
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmValue" /> class.</summary>
|
3408
|
+
<param name="type">The type of the value.</param>
|
3409
|
+
</member>
|
3410
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmValue.GetAnnotation(System.String,System.String)">
|
3411
|
+
<summary>Retrieves an annotation value from an EDM element. Returns null if no annotation with the given name exists.</summary>
|
3412
|
+
<returns>The requested annotation, or null if no such annotation exists.</returns>
|
3413
|
+
<param name="namespaceName">The namespace of the annotation.</param>
|
3414
|
+
<param name="localName">The name of the annotation within the namespace.</param>
|
3415
|
+
</member>
|
3416
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmValue.ImmediateAnnotations">
|
3417
|
+
<summary>Gets the collection of annotations on this element.</summary>
|
3418
|
+
<returns>The collection of annotations on this element.</returns>
|
3419
|
+
</member>
|
3420
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmValue.SetAnnotation(System.String,System.String,System.Object)">
|
3421
|
+
<summary>Sets an annotation value in an EDM element. If the value is null, no annotation is added and an existing annotation with the same name is removed.</summary>
|
3422
|
+
<param name="namespaceName">The namespace of the annotation.</param>
|
3423
|
+
<param name="localName">The name of the annotation within the namespace.</param>
|
3424
|
+
<param name="value">The value of the new annotation.</param>
|
3425
|
+
</member>
|
3426
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmValue.Type">
|
3427
|
+
<summary>Gets the type of this value.</summary>
|
3428
|
+
<returns>The type of this value.</returns>
|
3429
|
+
</member>
|
3430
|
+
<member name="T:Microsoft.Data.Edm.Library.EdmValueTerm">
|
3431
|
+
<summary>Represents an EDM value term.</summary>
|
3432
|
+
</member>
|
3433
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmValueTerm.#ctor(System.String,System.String,System.String)">
|
3434
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmValueTerm" /> class.</summary>
|
3435
|
+
<param name="namespaceName">The namespace of the term.</param>
|
3436
|
+
<param name="namespaceUri">The namespace URI of the term.</param>
|
3437
|
+
<param name="localName">The name of the term within the namespace.</param>
|
3438
|
+
</member>
|
3439
|
+
<member name="M:Microsoft.Data.Edm.Library.EdmValueTerm.#ctor(System.String,System.String,System.String,Microsoft.Data.Edm.IEdmTypeReference)">
|
3440
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Library.EdmValueTerm" /> class.</summary>
|
3441
|
+
<param name="namespaceName">The namespace of the term.</param>
|
3442
|
+
<param name="namespaceUri">The namespace URI of the term.</param>
|
3443
|
+
<param name="localName">The name of the term within the namespace.</param>
|
3444
|
+
<param name="type">The type of the term.</param>
|
3445
|
+
</member>
|
3446
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmValueTerm.Name">
|
3447
|
+
<summary>Gets the local name of this term.</summary>
|
3448
|
+
<returns>The local name of this term.</returns>
|
3449
|
+
</member>
|
3450
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmValueTerm.Namespace">
|
3451
|
+
<summary>Gets the namespace of this term.</summary>
|
3452
|
+
<returns>The namespace of this term.</returns>
|
3453
|
+
</member>
|
3454
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmValueTerm.NamespaceUri">
|
3455
|
+
<summary>Gets the namespace URI of this term.</summary>
|
3456
|
+
<returns>The namespace URI of this term.</returns>
|
3457
|
+
</member>
|
3458
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmValueTerm.SchemaElementKind">
|
3459
|
+
<summary>Gets the schema element kind of this term.</summary>
|
3460
|
+
<returns>The schema element kind of this term.</returns>
|
3461
|
+
</member>
|
3462
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmValueTerm.TermKind">
|
3463
|
+
<summary>Gets the kind of this term.</summary>
|
3464
|
+
<returns>The kind of this term.</returns>
|
3465
|
+
</member>
|
3466
|
+
<member name="P:Microsoft.Data.Edm.Library.EdmValueTerm.Type">
|
3467
|
+
<summary>Gets the type of this term.</summary>
|
3468
|
+
<returns>The type of this term.</returns>
|
3469
|
+
</member>
|
3470
|
+
<member name="T:Microsoft.Data.Edm.Validation.EdmError">
|
3471
|
+
<summary>Represents a reportable error in EDM.</summary>
|
3472
|
+
</member>
|
3473
|
+
<member name="M:Microsoft.Data.Edm.Validation.EdmError.#ctor(Microsoft.Data.Edm.EdmLocation,Microsoft.Data.Edm.Validation.EdmErrorCode,System.String)">
|
3474
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Validation.EdmError" /> class.</summary>
|
3475
|
+
<param name="errorLocation">The location where the error occurred.</param>
|
3476
|
+
<param name="errorCode">An integer code representing the error.</param>
|
3477
|
+
<param name="errorMessage">A human readable message describing the error.</param>
|
3478
|
+
</member>
|
3479
|
+
<member name="P:Microsoft.Data.Edm.Validation.EdmError.ErrorCode">
|
3480
|
+
<summary>Gets an integer code representing the error.</summary>
|
3481
|
+
<returns>The code representing the error.</returns>
|
3482
|
+
</member>
|
3483
|
+
<member name="P:Microsoft.Data.Edm.Validation.EdmError.ErrorLocation">
|
3484
|
+
<summary>Gets the location of the error in the file in which it occurred.</summary>
|
3485
|
+
<returns>The location of the error in the file in which it occurred.</returns>
|
3486
|
+
</member>
|
3487
|
+
<member name="P:Microsoft.Data.Edm.Validation.EdmError.ErrorMessage">
|
3488
|
+
<summary>Gets a human readable string describing the error.</summary>
|
3489
|
+
<returns>A human readable string describing the error.</returns>
|
3490
|
+
</member>
|
3491
|
+
<member name="M:Microsoft.Data.Edm.Validation.EdmError.ToString">
|
3492
|
+
<summary>Gets a string representation of the error.</summary>
|
3493
|
+
<returns>A string representation of the error.</returns>
|
3494
|
+
</member>
|
3495
|
+
<member name="T:Microsoft.Data.Edm.Validation.EdmErrorCode">
|
3496
|
+
<summary>Specifies the EdmLib validation error codes.</summary>
|
3497
|
+
</member>
|
3498
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidErrorCodeValue">
|
3499
|
+
<summary>Invalid error code.</summary>
|
3500
|
+
</member>
|
3501
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.UnexpectedXmlNodeType">
|
3502
|
+
<summary>Encountered an XML node that was never used.</summary>
|
3503
|
+
</member>
|
3504
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.UnexpectedXmlAttribute">
|
3505
|
+
<summary>Encountered an XML attribute that was never used.</summary>
|
3506
|
+
</member>
|
3507
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.UnexpectedXmlElement">
|
3508
|
+
<summary>Encountered an XML element that was never used.</summary>
|
3509
|
+
</member>
|
3510
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.TextNotAllowed">
|
3511
|
+
<summary>Text was found in a location it was not allowed in.</summary>
|
3512
|
+
</member>
|
3513
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.EmptyFile">
|
3514
|
+
<summary>An empty file was provided to the parser.</summary>
|
3515
|
+
</member>
|
3516
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.MissingAttribute">
|
3517
|
+
<summary>An XML element was missing a required attribute.</summary>
|
3518
|
+
</member>
|
3519
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidName">
|
3520
|
+
<summary>Invalid Name.</summary>
|
3521
|
+
</member>
|
3522
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.AlreadyDefined">
|
3523
|
+
<summary>Element name is already defined in this context.</summary>
|
3524
|
+
</member>
|
3525
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidVersionNumber">
|
3526
|
+
<summary>The specified version number is not valid.</summary>
|
3527
|
+
</member>
|
3528
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidBoolean">
|
3529
|
+
<summary>Malformed Boolean value.</summary>
|
3530
|
+
</member>
|
3531
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadProperty">
|
3532
|
+
<summary>The property contains an error.</summary>
|
3533
|
+
</member>
|
3534
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidPropertyType">
|
3535
|
+
<summary>The type of this property is invalid for the given context.</summary>
|
3536
|
+
</member>
|
3537
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.PrecisionOutOfRange">
|
3538
|
+
<summary>Precision out of range.</summary>
|
3539
|
+
</member>
|
3540
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.ScaleOutOfRange">
|
3541
|
+
<summary>Scale out of range.</summary>
|
3542
|
+
</member>
|
3543
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.NameTooLong">
|
3544
|
+
<summary>Name is too long.</summary>
|
3545
|
+
</member>
|
3546
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidAssociation">
|
3547
|
+
<summary>The provided association is invalid.</summary>
|
3548
|
+
</member>
|
3549
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadNavigationProperty">
|
3550
|
+
<summary>Navigation property contains errors.</summary>
|
3551
|
+
</member>
|
3552
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidKey">
|
3553
|
+
<summary>Entity key is invalid.</summary>
|
3554
|
+
</member>
|
3555
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidMultiplicity">
|
3556
|
+
<summary>Multiplicity value was malformed.</summary>
|
3557
|
+
</member>
|
3558
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidAction">
|
3559
|
+
<summary>The value for the Action attribute is invalid or not allowed in the current context.</summary>
|
3560
|
+
</member>
|
3561
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidOperation">
|
3562
|
+
<summary>An error occurred processing the On Operation elements.</summary>
|
3563
|
+
</member>
|
3564
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidEndEntitySet">
|
3565
|
+
<summary>The extent name used in the EntittyContainerType End does not match the name of any of the EntityContainerProperties in the containing EntityContainer.</summary>
|
3566
|
+
</member>
|
3567
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidRoleInRelationshipConstraint">
|
3568
|
+
<summary>Invalid role value in the relationship constraint.</summary>
|
3569
|
+
</member>
|
3570
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidPropertyInRelationshipConstraint">
|
3571
|
+
<summary>Invalid Property in relationship constraint.</summary>
|
3572
|
+
</member>
|
3573
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.TypeMismatchRelationshipConstraint">
|
3574
|
+
<summary>Type mismatch between ToProperty and FromProperty in the relationship constraint.</summary>
|
3575
|
+
</member>
|
3576
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidMultiplicityInRoleInRelationshipConstraint">
|
3577
|
+
<summary>Invalid multiplicity in FromRole in the relationship constraint.</summary>
|
3578
|
+
</member>
|
3579
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.MismatchNumberOfPropertiesInRelationshipConstraint">
|
3580
|
+
<summary>The number of properties in the FromProperty and ToProperty in the relationship constraint must be identical.</summary>
|
3581
|
+
</member>
|
3582
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.SameRoleReferredInReferentialConstraint">
|
3583
|
+
<summary>Same role referred in the ToRole and FromRole of a referential constraint.</summary>
|
3584
|
+
</member>
|
3585
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.EntityKeyMustBeScalar">
|
3586
|
+
<summary>Properties that are part of entity key must be of scalar type.</summary>
|
3587
|
+
</member>
|
3588
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.EntityKeyMustNotBeBinary">
|
3589
|
+
<summary>Binary type properties which are part of entity key are currently supported before V2.0.</summary>
|
3590
|
+
</member>
|
3591
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.EndWithManyMultiplicityCannotHaveOperationsSpecified">
|
3592
|
+
<summary>End with * multiplicity cannot have operations specified.</summary>
|
3593
|
+
</member>
|
3594
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.EntitySetTypeHasNoKeys">
|
3595
|
+
<summary>EntitySet type has no keys.</summary>
|
3596
|
+
</member>
|
3597
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidConcurrencyMode">
|
3598
|
+
<summary>ConcurrencyMode value was malformed.</summary>
|
3599
|
+
</member>
|
3600
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.ConcurrencyRedefinedOnSubtypeOfEntitySetType">
|
3601
|
+
<summary>Concurrency can't change for any sub types of an EntitySet type.</summary>
|
3602
|
+
</member>
|
3603
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FunctionImportUnsupportedReturnType">
|
3604
|
+
<summary>Function import return type must be either empty, a collection of entities, or a singleton scalar.</summary>
|
3605
|
+
</member>
|
3606
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.ComposableFunctionImportCannotBeSideEffecting">
|
3607
|
+
<summary>Composable function import cannot be side-effecting.</summary>
|
3608
|
+
</member>
|
3609
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FunctionImportReturnsEntitiesButDoesNotSpecifyEntitySet">
|
3610
|
+
<summary>Function import specifies entity type return but no entity set.</summary>
|
3611
|
+
</member>
|
3612
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FunctionImportEntityTypeDoesNotMatchEntitySet">
|
3613
|
+
<summary>Function import specifies entity type that does not derive from element type of entity set.</summary>
|
3614
|
+
</member>
|
3615
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FunctionImportSpecifiesEntitySetButDoesNotReturnEntityType">
|
3616
|
+
<summary>Function import specifies a binding to an entity set but does not return entities.</summary>
|
3617
|
+
</member>
|
3618
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.SimilarRelationshipEnd">
|
3619
|
+
<summary>Same Entity Set Taking part in the same role of the relationship set in two different relationship sets.</summary>
|
3620
|
+
</member>
|
3621
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.DuplicatePropertySpecifiedInEntityKey">
|
3622
|
+
<summary>Entity key refers to the same property twice.</summary>
|
3623
|
+
</member>
|
3624
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.NullableComplexType">
|
3625
|
+
<summary>Nullable Complex Type not supported in EDM V1.</summary>
|
3626
|
+
</member>
|
3627
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.KeyMissingOnEntityType">
|
3628
|
+
<summary>No Key defined on Entity Type.</summary>
|
3629
|
+
</member>
|
3630
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.SystemNamespaceEncountered">
|
3631
|
+
<summary>Need not specify system namespace in using.</summary>
|
3632
|
+
</member>
|
3633
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidNamespaceName">
|
3634
|
+
<summary>Invalid qualification specified for type.</summary>
|
3635
|
+
</member>
|
3636
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.EnumMemberValueOutOfRange">
|
3637
|
+
<summary>The value for an enumeration type member is out of range.</summary>
|
3638
|
+
</member>
|
3639
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.DuplicateEntityContainerMemberName">
|
3640
|
+
<summary>The entity container name has already been assigned to a different entity container.</summary>
|
3641
|
+
</member>
|
3642
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidAbstractComplexType">
|
3643
|
+
<summary>Complex types were not allowed to be abstract here.</summary>
|
3644
|
+
</member>
|
3645
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidPolymorphicComplexType">
|
3646
|
+
<summary>Complex types cannot have base types in this version.</summary>
|
3647
|
+
</member>
|
3648
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadAmbiguousElementBinding">
|
3649
|
+
<summary>Name collision makes this name ambiguous.</summary>
|
3650
|
+
</member>
|
3651
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadUnresolvedType">
|
3652
|
+
<summary>Could not find a type with this name.</summary>
|
3653
|
+
</member>
|
3654
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadUnresolvedPrimitiveType">
|
3655
|
+
<summary>Could not find a primitive type with this name.</summary>
|
3656
|
+
</member>
|
3657
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadCyclicComplex">
|
3658
|
+
<summary>This complex type is part of a cycle.</summary>
|
3659
|
+
</member>
|
3660
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadCyclicEntityContainer">
|
3661
|
+
<summary>This Entity Container is bad because some part of its extends hierarchy is part of a cycle.</summary>
|
3662
|
+
</member>
|
3663
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadCyclicEntity">
|
3664
|
+
<summary>This entity type is part of a cycle.</summary>
|
3665
|
+
</member>
|
3666
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.TypeSemanticsCouldNotConvertTypeReference">
|
3667
|
+
<summary>Could not convert type reference to the requested type.</summary>
|
3668
|
+
</member>
|
3669
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.ConstructibleEntitySetTypeInvalidFromEntityTypeRemoval">
|
3670
|
+
<summary>This entity set became invalid because the entity that it was of the type of was removed from the model.</summary>
|
3671
|
+
</member>
|
3672
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadUnresolvedEntityContainer">
|
3673
|
+
<summary>Could not find an EntityContainer with that name.</summary>
|
3674
|
+
</member>
|
3675
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadUnresolvedEntitySet">
|
3676
|
+
<summary>Could not find an EntitySet with that name.</summary>
|
3677
|
+
</member>
|
3678
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadUnresolvedProperty">
|
3679
|
+
<summary>Could not find a property with that name.</summary>
|
3680
|
+
</member>
|
3681
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadNonComputableAssociationEnd">
|
3682
|
+
<summary>Could not find an association end with that name.</summary>
|
3683
|
+
</member>
|
3684
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.NavigationPropertyTypeInvalidBecauseOfBadAssociation">
|
3685
|
+
<summary>Type of the navigation property was invalid because the association of the navigation property was invalid.</summary>
|
3686
|
+
</member>
|
3687
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.EntityMustHaveEntityBaseType">
|
3688
|
+
<summary>The base type of an entity must also be an entity.</summary>
|
3689
|
+
</member>
|
3690
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.ComplexTypeMustHaveComplexBaseType">
|
3691
|
+
<summary>The base type of a complex type must also be complex.</summary>
|
3692
|
+
</member>
|
3693
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.RowTypeMustNotHaveBaseType">
|
3694
|
+
<summary>Rows cannot have base types.</summary>
|
3695
|
+
</member>
|
3696
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.AssociationSetEndRoleMustBelongToSetElementType">
|
3697
|
+
<summary>The role of an association set end must be an association end belonging to the association type that defines the association set.</summary>
|
3698
|
+
</member>
|
3699
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.KeyPropertyMustBelongToEntity">
|
3700
|
+
<summary>Every property in an entity key must be a property of the entity.</summary>
|
3701
|
+
</member>
|
3702
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.ReferentialConstraintPrincipleEndMustBelongToAssociation">
|
3703
|
+
<summary>The principle end of a referential constraint must be one of the ends of the association that defined the referential constraint.</summary>
|
3704
|
+
</member>
|
3705
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.DependentPropertiesMustBelongToDependentEntity">
|
3706
|
+
<summary>Dependent properties of a referential constraint must belong to the dependent entity set.</summary>
|
3707
|
+
</member>
|
3708
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.DeclaringTypeMustBeCorrect">
|
3709
|
+
<summary>If a structured type declares a property, that properties declaring type must be the declaring structured type.</summary>
|
3710
|
+
</member>
|
3711
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FunctionsNotSupportedBeforeV2">
|
3712
|
+
<summary>Functions are not supported before version 2.0.</summary>
|
3713
|
+
</member>
|
3714
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.AbstractEntitiesCannotBeInstantiated">
|
3715
|
+
<summary>Abstract entities cannot be used as the type of an entity set because they cannot be instantiated.</summary>
|
3716
|
+
</member>
|
3717
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidNavigationPropertyType">
|
3718
|
+
<summary>Navigation property has a type that is not an entity or collection of entities.</summary>
|
3719
|
+
</member>
|
3720
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.TermTypeIsBadBecauseTermIsBad">
|
3721
|
+
<summary>Type of term is bad because the term is bad.</summary>
|
3722
|
+
</member>
|
3723
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FailedToParseExternalAnnotations">
|
3724
|
+
<summary>Failed to parse external annotations.</summary>
|
3725
|
+
</member>
|
3726
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.UnderlyingTypeIsBadBecauseEnumTypeIsBad">
|
3727
|
+
<summary>Underlying type of the enumeration type is bad because the enumeration type is bad.</summary>
|
3728
|
+
</member>
|
3729
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidAssociationSetEndSetWrongType">
|
3730
|
+
<summary>The type of the entity set on this association end is inconsistent with the association end.</summary>
|
3731
|
+
</member>
|
3732
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.OnlyInputParametersAllowedInFunctions">
|
3733
|
+
<summary>Only function parameters with mode of In are allowed in function imports.</summary>
|
3734
|
+
</member>
|
3735
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FunctionParameterIncorrectType">
|
3736
|
+
<summary>Function parameter was of a non-allowed type.</summary>
|
3737
|
+
</member>
|
3738
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FunctionReturnTypeIncorrectType">
|
3739
|
+
<summary>Function return type was of a non-allowed type.</summary>
|
3740
|
+
</member>
|
3741
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.RowTypeMustHaveProperties">
|
3742
|
+
<summary>A row type must contain at least one property.</summary>
|
3743
|
+
</member>
|
3744
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.DuplicateDependentProperty">
|
3745
|
+
<summary>A referential constraint cannot have multiple dependent properties with the same name.</summary>
|
3746
|
+
</member>
|
3747
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BindableFunctionImportMustHaveParameters">
|
3748
|
+
<summary>Bindable function import must have at least one parameter.</summary>
|
3749
|
+
</member>
|
3750
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FunctionImportSideEffectingNotSupportedBeforeV3">
|
3751
|
+
<summary>Function imports with side-effecting setting are not supported before version 3.0.</summary>
|
3752
|
+
</member>
|
3753
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FunctionImportComposableNotSupportedBeforeV3">
|
3754
|
+
<summary>Function imports with composable setting are not supported before version 3.0.</summary>
|
3755
|
+
</member>
|
3756
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.FunctionImportBindableNotSupportedBeforeV3">
|
3757
|
+
<summary>Function imports with bindable setting are not supported before version 3.0.</summary>
|
3758
|
+
</member>
|
3759
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.MaxLengthOutOfRange">
|
3760
|
+
<summary>Max length is out of range.</summary>
|
3761
|
+
</member>
|
3762
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadUnresolvedValueTerm">
|
3763
|
+
<summary>Could not find a ValueTerm with that name.</summary>
|
3764
|
+
</member>
|
3765
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.PathExpressionHasNoEntityContext">
|
3766
|
+
<summary>Binding context for Path expression does not supply an entity type.</summary>
|
3767
|
+
</member>
|
3768
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidSrid">
|
3769
|
+
<summary>Invalid value for SRID.</summary>
|
3770
|
+
</member>
|
3771
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidMaxLength">
|
3772
|
+
<summary>Invalid value for max length.</summary>
|
3773
|
+
</member>
|
3774
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidLong">
|
3775
|
+
<summary>Invalid value for long.</summary>
|
3776
|
+
</member>
|
3777
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidInteger">
|
3778
|
+
<summary>Invalid value for integer.</summary>
|
3779
|
+
</member>
|
3780
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidAssociationSet">
|
3781
|
+
<summary>Invalid association set.</summary>
|
3782
|
+
</member>
|
3783
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidParameterMode">
|
3784
|
+
<summary>Invalid parameter mode.</summary>
|
3785
|
+
</member>
|
3786
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.BadUnresolvedEntityType">
|
3787
|
+
<summary>No entity type with that name exists.</summary>
|
3788
|
+
</member>
|
3789
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidValue">
|
3790
|
+
<summary>Value is invalid.</summary>
|
3791
|
+
</member>
|
3792
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidBinaryValue">
|
3793
|
+
<summary>Binary value is invalid.</summary>
|
3794
|
+
</member>
|
3795
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidBooleanValue">
|
3796
|
+
<summary>Boolean value is invalid.</summary>
|
3797
|
+
</member>
|
3798
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidDateTimeValue">
|
3799
|
+
<summary>DateTime value is invalid.</summary>
|
3800
|
+
</member>
|
3801
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidDateTimeOffsetValue">
|
3802
|
+
<summary>DateTimeOffset value is invalid.</summary>
|
3803
|
+
</member>
|
3804
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidDecimalValue">
|
3805
|
+
<summary>Decimal value is invalid.</summary>
|
3806
|
+
</member>
|
3807
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidGuidValue">
|
3808
|
+
<summary>Guid value is invalid.</summary>
|
3809
|
+
</member>
|
3810
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidIntegerValue">
|
3811
|
+
<summary>Integer value is invalid.</summary>
|
3812
|
+
</member>
|
3813
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.InvalidIfExpressionIncorrectNumberOfOperands">
|
3814
|
+
<summary>The if expression is invalid because it does not have 3 elements.</summary>
|
3815
|
+
</member>
|
3816
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.EnumsNotSupportedBeforeV3">
|
3817
|
+
<summary>Enums were present in a model with a version below 3.0.</summary>
|
3818
|
+
</member>
|
3819
|
+
<member name="F:Microsoft.Data.Edm.Validation.EdmErrorCode.EnumMemberTypeMustMatchEnumUnderlyingType">
|
3820
|
+
<summary>The type of an enum member value must match the underlying of the parent enum.</summary>
|
3821
|
+
</member>
|
3822
|
+
<member name="T:Microsoft.Data.Edm.Validation.EdmValidator">
|
3823
|
+
<summary>Represents a collection of validation methods.</summary>
|
3824
|
+
</member>
|
3825
|
+
<member name="M:Microsoft.Data.Edm.Validation.EdmValidator.Validate(Microsoft.Data.Edm.IEdmModel,Microsoft.Data.Edm.Validation.ValidationRuleSet,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.Validation.EdmError}@)">
|
3826
|
+
<summary>Validates the <see cref="T:Microsoft.Data.Edm.IEdmModel" /> and all of its properties given certain version.</summary>
|
3827
|
+
<returns>True if model is valid, otherwise false.</returns>
|
3828
|
+
<param name="root">The root of the model to be validated.</param>
|
3829
|
+
<param name="ruleSet">The custom rule set to validate against.</param>
|
3830
|
+
<param name="errors">The errors encountered while validating the model.</param>
|
3831
|
+
</member>
|
3832
|
+
<member name="M:Microsoft.Data.Edm.Validation.EdmValidator.Validate(Microsoft.Data.Edm.IEdmModel,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.Validation.EdmError}@)">
|
3833
|
+
<summary>Validates the <see cref="T:Microsoft.Data.Edm.IEdmModel" /> and all of its properties using the current version of the model. If the model has no version, <see cref="T:Microsoft.Data.Edm.IEdmModel" /> is used.</summary>
|
3834
|
+
<returns>True if model is valid, otherwise false.</returns>
|
3835
|
+
<param name="root">The root of the model to be validated.</param>
|
3836
|
+
<param name="errors">The errors encountered while validating the model.</param>
|
3837
|
+
</member>
|
3838
|
+
<member name="M:Microsoft.Data.Edm.Validation.EdmValidator.Validate(Microsoft.Data.Edm.IEdmModel,System.Version,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.Validation.EdmError}@)">
|
3839
|
+
<summary>Validates the <see cref="T:Microsoft.Data.Edm.IEdmModel" /> and all of its properties given certain version.</summary>
|
3840
|
+
<returns>True if model is valid, otherwise false.</returns>
|
3841
|
+
<param name="root">The root of the model to be validated.</param>
|
3842
|
+
<param name="version">The version of EDM to validate against.</param>
|
3843
|
+
<param name="errors">The errors encountered while validating the model.</param>
|
3844
|
+
</member>
|
3845
|
+
<member name="T:Microsoft.Data.Edm.Validation.ValidationContext">
|
3846
|
+
<summary>Specifies a context that records errors reported by validation rules.</summary>
|
3847
|
+
</member>
|
3848
|
+
<member name="M:Microsoft.Data.Edm.Validation.ValidationContext.AddError(Microsoft.Data.Edm.EdmLocation,Microsoft.Data.Edm.Validation.EdmErrorCode,System.String)">
|
3849
|
+
<summary>Adds an error with the validation context.</summary>
|
3850
|
+
<param name="location">The location of the error.</param>
|
3851
|
+
<param name="errorCode">The value representing the error.</param>
|
3852
|
+
<param name="errorMessage">The message text describing the error.</param>
|
3853
|
+
</member>
|
3854
|
+
<member name="M:Microsoft.Data.Edm.Validation.ValidationContext.AddError(Microsoft.Data.Edm.Validation.EdmError)">
|
3855
|
+
<summary>Adds an error with the validation context.</summary>
|
3856
|
+
<param name="error">The error to register.</param>
|
3857
|
+
</member>
|
3858
|
+
<member name="M:Microsoft.Data.Edm.Validation.ValidationContext.FindTypeInModel(System.String)">
|
3859
|
+
<summary>Finds a type from the provided model, or from the set of primitive types.</summary>
|
3860
|
+
<returns>The requested type if it exists, otherwise null.</returns>
|
3861
|
+
<param name="qualifiedName">The name of the type being found.</param>
|
3862
|
+
</member>
|
3863
|
+
<member name="P:Microsoft.Data.Edm.Validation.ValidationContext.Model">
|
3864
|
+
<summary>Gets the model being validated.</summary>
|
3865
|
+
<returns>The model being validated.</returns>
|
3866
|
+
</member>
|
3867
|
+
<member name="T:Microsoft.Data.Edm.Validation.ValidationRule">
|
3868
|
+
<summary>Represents a semantic validation rule.</summary>
|
3869
|
+
</member>
|
3870
|
+
<member name="M:Microsoft.Data.Edm.Validation.ValidationRule.#ctor">
|
3871
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Validation.ValidationRule" /> class.</summary>
|
3872
|
+
</member>
|
3873
|
+
<member name="T:Microsoft.Data.Edm.Validation.ValidationRule`1">
|
3874
|
+
<summary>Represents a validation rule that is valid for a specific type.</summary>
|
3875
|
+
<typeparam name="TItem">The type that the rule is valid for.</typeparam>
|
3876
|
+
</member>
|
3877
|
+
<member name="M:Microsoft.Data.Edm.Validation.ValidationRule`1.#ctor(System.Action`2)"></member>
|
3878
|
+
<member name="T:Microsoft.Data.Edm.Validation.ValidationRules">
|
3879
|
+
<summary>Specifies a built in EDM validation rules.</summary>
|
3880
|
+
</member>
|
3881
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.AbstractEntitiesCannotBeInstantiated">
|
3882
|
+
<summary>Validates that the entity set is not of an abstract type.</summary>
|
3883
|
+
</member>
|
3884
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.AssociationEndInaccessibleEntityType">
|
3885
|
+
<summary>Validates that an association end does not have an entity type that is inaccessible from the model being validated.</summary>
|
3886
|
+
</member>
|
3887
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.AssociationSetEndRoleMustBelongToSetElementType">
|
3888
|
+
<summary>Validates that the role of an association set end belongs to the association refered to by the association set.</summary>
|
3889
|
+
</member>
|
3890
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.BaseTypeMustBeNull">
|
3891
|
+
<summary>Validates that a row type does not have a base type.</summary>
|
3892
|
+
</member>
|
3893
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.BaseTypeMustBeSameKindAsDerivedKind">
|
3894
|
+
<summary>Validates that the base type of a complex type is complex, and the base type of an entity type is an entity.</summary>
|
3895
|
+
</member>
|
3896
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.BinaryMaxLengthNegative">
|
3897
|
+
<summary>Validates that the max length of a binary type is not negative.</summary>
|
3898
|
+
</member>
|
3899
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.BindableFunctionImportMustHaveParameters">
|
3900
|
+
<summary>Validates that if a function is bindable, it must have parameters.</summary>
|
3901
|
+
</member>
|
3902
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.ComposableFunctionImportCannotBeSideEffecting">
|
3903
|
+
<summary>Validates that if a function is composable, it is not also side effecting.</summary>
|
3904
|
+
</member>
|
3905
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.ConcurrencyRedefinedOnSubtypeOfEntitySetType">
|
3906
|
+
<summary>Validates that concurrency is not redefined on the sub type of a type used by an entity set.</summary>
|
3907
|
+
</member>
|
3908
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.CorrectType">
|
3909
|
+
<summary>Validates that the type of a navigation property corresponds to the other end of the association and the multiplicity of the other end.</summary>
|
3910
|
+
</member>
|
3911
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.DependentPropertiesMustBelongToDependentEntity">
|
3912
|
+
<summary>Validates that all dependent properties of a referential constraint belong to the dependent entity type.</summary>
|
3913
|
+
</member>
|
3914
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.DuplicateDependentProperty">
|
3915
|
+
<summary>Validates that the dependent properties of a referential constraint contain no duplicates.</summary>
|
3916
|
+
</member>
|
3917
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.DuplicateEndName">
|
3918
|
+
<summary>Validates that the association set does not have duplicate ends.</summary>
|
3919
|
+
</member>
|
3920
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.DuplicateEntityContainerMemberName">
|
3921
|
+
<summary>Validates that there are no duplicate names in an entity container.</summary>
|
3922
|
+
</member>
|
3923
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.DuplicatePropertyNameSpecifiedInEntityKey">
|
3924
|
+
<summary>Validates that there are not duplicate properties in an entity key.</summary>
|
3925
|
+
</member>
|
3926
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EndNameAlreadyDefinedDuplicate">
|
3927
|
+
<summary>Validates that there is not duplicate end names in an association.</summary>
|
3928
|
+
</member>
|
3929
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EndsMustHaveCorrectDeclaringAssociation">
|
3930
|
+
<summary>Validates that the declaring association of an association end contains the end.</summary>
|
3931
|
+
</member>
|
3932
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EndWithManyMultiplicityCannotHaveOperationsSpecified">
|
3933
|
+
<summary>Validates that the association end does not have both a multiplicity of many and an OnDelete operation.</summary>
|
3934
|
+
</member>
|
3935
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EntityKeyMustBeScalar">
|
3936
|
+
<summary>Validates that all parts of an entity key are scalar.</summary>
|
3937
|
+
</member>
|
3938
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EntityKeyMustNotBeBinaryBeforeV2">
|
3939
|
+
<summary>Validates that no part of an entity key is a binary primitive type.</summary>
|
3940
|
+
</member>
|
3941
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EntityReferenceInaccessibleEntityType">
|
3942
|
+
<summary>Validates that the entity type wrapped in this entity reference can be found through the model being validated.</summary>
|
3943
|
+
</member>
|
3944
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EntitySetMustBeOfCorrectEntityType">
|
3945
|
+
<summary>Validates that the entity type of the role of an association set end is the same entity type as the entity set that set end points to.</summary>
|
3946
|
+
</member>
|
3947
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EntitySetTypeHasNoKeys">
|
3948
|
+
<summary>Validates that there is no entity set whose entity type has no key.</summary>
|
3949
|
+
</member>
|
3950
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EnumMemberNameAlreadyDefined">
|
3951
|
+
<summary>Validates that there are not duplicate enum members in an enum.</summary>
|
3952
|
+
</member>
|
3953
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EnumMemberValueMustHaveSameTypeAsUnderlyingType">
|
3954
|
+
<summary>Raises an error if the type of an enum member doesn't match the underlying type of the enum it belongs to.</summary>
|
3955
|
+
</member>
|
3956
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.EnumsNotSupportedBeforeV3">
|
3957
|
+
<summary>Raises an error if an enum type is found.</summary>
|
3958
|
+
</member>
|
3959
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.FunctionImportEntityTypeDoesNotMatchEntitySet">
|
3960
|
+
<summary>Validates that the return type of a function must match the type of the entity set of the function.</summary>
|
3961
|
+
</member>
|
3962
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.FunctionImportReturnEntitiesButDoesNotSpecifyEntitySet">
|
3963
|
+
<summary>Validates that if a function import specifies an entity or collection of entities as its return type, it must also specify an entity set.</summary>
|
3964
|
+
</member>
|
3965
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.FunctionImportSpecifiesEntitySetButDoesNotReturnEntityType">
|
3966
|
+
<summary>Validates that if a function specifies an entity set, it must return an entity or collection of entities.</summary>
|
3967
|
+
</member>
|
3968
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.FunctionImportUnsupportedReturnTypeV1">
|
3969
|
+
<summary>Validates that a function import has an allowed return type.</summary>
|
3970
|
+
</member>
|
3971
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.FunctionImportUnsupportedReturnTypeV1_1">
|
3972
|
+
<summary>Validates that a function import has an allowed return type.</summary>
|
3973
|
+
</member>
|
3974
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.FunctionImportUnsupportedReturnTypeV2">
|
3975
|
+
<summary>Validates that a function import has an allowed return type.</summary>
|
3976
|
+
</member>
|
3977
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.FunctionImportUnsupportedReturnTypeV3">
|
3978
|
+
<summary>Validates that a function import has an allowed return type.</summary>
|
3979
|
+
</member>
|
3980
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.FunctionReturnTypeIncorrectType">
|
3981
|
+
<summary>Validates that the return type of the function is allowable.</summary>
|
3982
|
+
</member>
|
3983
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.FunctionsNotSupportedBeforeV2">
|
3984
|
+
<summary>Raises an error if a function is found.</summary>
|
3985
|
+
</member>
|
3986
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InaccessibleAssociation">
|
3987
|
+
<summary>Validates that the association refered to by an association set can be found from the model being validated.</summary>
|
3988
|
+
</member>
|
3989
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InaccessibleBaseType">
|
3990
|
+
<summary>Validates that the base type of a structured type can be found from the model being validated.</summary>
|
3991
|
+
</member>
|
3992
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InaccessibleEntityType">
|
3993
|
+
<summary>Validates that the entity type of an entity set can be found from the model being validated.</summary>
|
3994
|
+
</member>
|
3995
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InaccessibleSchemaType">
|
3996
|
+
<summary>Validates that a type reference refers to a type that can be found through the model being validated.</summary>
|
3997
|
+
</member>
|
3998
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidIsAbstractComplexTypeV1">
|
3999
|
+
<summary>Validates that a complex type is not abstract.</summary>
|
4000
|
+
</member>
|
4001
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidIsPolymorphicComplexTypeV1">
|
4002
|
+
<summary>Validates that a complex type does not inherit.</summary>
|
4003
|
+
</member>
|
4004
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidKeyKeyDefinedInBaseClass">
|
4005
|
+
<summary>Validates that a key is not defined if there is already a key in the base type.</summary>
|
4006
|
+
</member>
|
4007
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidKeyNullablePart">
|
4008
|
+
<summary>Validates that no part of an entity key is nullable.</summary>
|
4009
|
+
</member>
|
4010
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidMemberNameMatchesTypeName">
|
4011
|
+
<summary>Validates that a type does not have a property with the same name as that type.</summary>
|
4012
|
+
</member>
|
4013
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidMultiplicityFromRoleToPropertyNonNullableV1">
|
4014
|
+
<summary>Validates that if not all dependent properties are nullable then the multiplicity must be 1.</summary>
|
4015
|
+
</member>
|
4016
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidMultiplicityFromRoleToPropertyNonNullableV2">
|
4017
|
+
<summary>Validates that if the dependent properties have no nullable property the multiplicity must be one.</summary>
|
4018
|
+
</member>
|
4019
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidMultiplicityFromRoleToPropertyNullable">
|
4020
|
+
<summary>Validates if all dependent properties of a referential constraint are nullable that the multiplicity cannot be 1.</summary>
|
4021
|
+
</member>
|
4022
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidMultiplicityFromRoleUpperBoundMustBeOne">
|
4023
|
+
<summary>Validates that the multiplicity of the principle end is not many.</summary>
|
4024
|
+
</member>
|
4025
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidMultiplicityToRoleUpperBoundMustBeMany">
|
4026
|
+
<summary>Validates that if the dependent ends entity key is not equivalent to the dependent properties, the multiplicity of the dependent end must be many.</summary>
|
4027
|
+
</member>
|
4028
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidMultiplicityToRoleUpperBoundMustBeOne">
|
4029
|
+
<summary>Validates that if the dependent properties are equivalent to the key of the dependent end, the multiplicity of the dependent end cannot be 1.</summary>
|
4030
|
+
</member>
|
4031
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidOperationMultipleEndsInAssociation">
|
4032
|
+
<summary>Validates that only one end of an association has an OnDelete operation.</summary>
|
4033
|
+
</member>
|
4034
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidPropertyType">
|
4035
|
+
<summary>Validates that the property is of an allowed type.</summary>
|
4036
|
+
</member>
|
4037
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidPropertyTypeConcurrencyMode">
|
4038
|
+
<summary>Validates that if the concurrency mode of a property is fixed, the type is primitive.</summary>
|
4039
|
+
</member>
|
4040
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.InvalidToPropertyInRelationshipConstraintBeforeV2">
|
4041
|
+
<summary>Validates that all dependent properties are a subset of the dependent entity types key.</summary>
|
4042
|
+
</member>
|
4043
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.IsBindableNotSupportedBeforeV3">
|
4044
|
+
<summary>Validates that a function is not bindable.</summary>
|
4045
|
+
</member>
|
4046
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.IsComposableNotSupportedBeforeV3">
|
4047
|
+
<summary>Validates that a function import is not composable.</summary>
|
4048
|
+
</member>
|
4049
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.IsSideEffectingNotSupportedBeforeV3">
|
4050
|
+
<summary>Validates that a function import is not side effecting.</summary>
|
4051
|
+
</member>
|
4052
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.KeyMissingOnEntityType">
|
4053
|
+
<summary>Validates that the entity type has a key.</summary>
|
4054
|
+
</member>
|
4055
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.KeyPropertyMustBelongToEntity">
|
4056
|
+
<summary>Validates that all properties in the key of an entity belong to that entity.</summary>
|
4057
|
+
</member>
|
4058
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.MustContainProperties">
|
4059
|
+
<summary>Validates that a row type contains at least one property.</summary>
|
4060
|
+
</member>
|
4061
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.NameIsNotAllowed">
|
4062
|
+
<summary>Validates that an element name matches the allowed pattern of names according to the CSDL spec.</summary>
|
4063
|
+
</member>
|
4064
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.NameIsTooLong">
|
4065
|
+
<summary>Validates that an element name is not too long according to the CSDL spec.</summary>
|
4066
|
+
</member>
|
4067
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.NameMustNotBeEmptyOrWhiteSpace">
|
4068
|
+
<summary>Validates that a name is not empty or whitespace.</summary>
|
4069
|
+
</member>
|
4070
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.NamespaceIsNotAllowed">
|
4071
|
+
<summary>Validates that an element namespace matches the allowed pattern of namespaces according to the CSDL spec.</summary>
|
4072
|
+
</member>
|
4073
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.NamespaceIsTooLong">
|
4074
|
+
<summary>Validates that an element namespace is not too long according to the CSDL spec.</summary>
|
4075
|
+
</member>
|
4076
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.NamespaceMustNotBeEmptyOrWhiteSpace">
|
4077
|
+
<summary>Validates that an element namespace is not empty or whitespace.</summary>
|
4078
|
+
</member>
|
4079
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.NavigationPropertyInaccessibleAssociation">
|
4080
|
+
<summary>Validates that the association of a navigation property can be found through the model being validated.</summary>
|
4081
|
+
</member>
|
4082
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.NullableComplexType">
|
4083
|
+
<summary>Validates that any property with a complex type is not nullable.</summary>
|
4084
|
+
</member>
|
4085
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.OnlyInputParametersAllowedInFunctions">
|
4086
|
+
<summary>Validates that no function parameters are output parameters.</summary>
|
4087
|
+
</member>
|
4088
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.ParameterNameAlreadyDefinedDuplicate">
|
4089
|
+
<summary>Validates that a function does not have multiple parameters with the same name.</summary>
|
4090
|
+
</member>
|
4091
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.ParametersIncorrectType">
|
4092
|
+
<summary>Validates that the parameters of a function have a correct type.</summary>
|
4093
|
+
</member>
|
4094
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.ParametersIncorrectTypeBeforeV3">
|
4095
|
+
<summary>Validates that the type of a function imports parameter is correct.</summary>
|
4096
|
+
</member>
|
4097
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.PropertiesDeclaringTypeMustBeCorrect">
|
4098
|
+
<summary>Validates that the declaring type of a property contains that property.</summary>
|
4099
|
+
</member>
|
4100
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.PropertyNameAlreadyDefined">
|
4101
|
+
<summary>Validates that there are not duplicate properties in a type.</summary>
|
4102
|
+
</member>
|
4103
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.ReferentialConstraintPrincipleEndMustBelongToAssociation">
|
4104
|
+
<summary>Validates that the principal end of a referential constraint is one of the ends of the association that declares the referential constraint.</summary>
|
4105
|
+
</member>
|
4106
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.ScaleOutOfRange">
|
4107
|
+
<summary>Validates that the scale is between 0 and the precision of the decimal type.</summary>
|
4108
|
+
</member>
|
4109
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.SimilarRelationshipEnd">
|
4110
|
+
<summary>Validates that there are no association sets that refer to both the same association and the same entity set.</summary>
|
4111
|
+
</member>
|
4112
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.StringMaxLengthNegative">
|
4113
|
+
<summary>Validates that the max length of a string is not negative.</summary>
|
4114
|
+
</member>
|
4115
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.SystemNamespaceEncountered">
|
4116
|
+
<summary>Validates that an element namespace is not a reserved system namespace.</summary>
|
4117
|
+
</member>
|
4118
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.TypeMismatchRelationshipConstraint">
|
4119
|
+
<summary>Validates that each pair of properties between the dependent properties and the principle ends key are of the same type.</summary>
|
4120
|
+
</member>
|
4121
|
+
<member name="F:Microsoft.Data.Edm.Validation.ValidationRules.TypeNameAlreadyDefined">
|
4122
|
+
<summary>Validates that there are no duplicate type names in a model.</summary>
|
4123
|
+
</member>
|
4124
|
+
<member name="T:Microsoft.Data.Edm.Validation.ValidationRuleSet">
|
4125
|
+
<summary>Provides a set of rules to run during validation.</summary>
|
4126
|
+
</member>
|
4127
|
+
<member name="M:Microsoft.Data.Edm.Validation.ValidationRuleSet.#ctor(Microsoft.Data.Edm.Validation.ValidationRuleSet,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.Validation.ValidationRule})">
|
4128
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Validation.ValidationRuleSet" /> class.</summary>
|
4129
|
+
<param name="baseSet">The ruleset whose rules should be contained in this set.</param>
|
4130
|
+
<param name="newRules">The additional rules to add to the set.</param>
|
4131
|
+
</member>
|
4132
|
+
<member name="M:Microsoft.Data.Edm.Validation.ValidationRuleSet.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.Validation.ValidationRule})">
|
4133
|
+
<summary>Creates a new instance of the <see cref="T:Microsoft.Data.Edm.Validation.ValidationRuleSet" /> class.</summary>
|
4134
|
+
<param name="rules">The rules to be contained in this ruleset.</param>
|
4135
|
+
</member>
|
4136
|
+
<member name="M:Microsoft.Data.Edm.Validation.ValidationRuleSet.GetEdmModelRuleSet(System.Version)">
|
4137
|
+
<summary>Gets the default validation ruleset for the given version.</summary>
|
4138
|
+
<returns>The set of rules to validate that the model conforms to the given version.</returns>
|
4139
|
+
<param name="version">The EDM version being validated.</param>
|
4140
|
+
</member>
|
4141
|
+
<member name="M:Microsoft.Data.Edm.Validation.ValidationRuleSet.GetEnumerator">
|
4142
|
+
<summary>Gets all of the rules in this ruleset.</summary>
|
4143
|
+
<returns>All of the rules in this ruleset.</returns>
|
4144
|
+
</member>
|
4145
|
+
<member name="M:Microsoft.Data.Edm.Validation.ValidationRuleSet.System#Collections#IEnumerable#GetEnumerator">
|
4146
|
+
<summary>Gets all of the rules in this ruleset. </summary>
|
4147
|
+
<returns>All of the rules in this ruleset.</returns>
|
4148
|
+
</member>
|
4149
|
+
</members>
|
4150
|
+
</doc>
|