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.
Files changed (173) hide show
  1. data/.gitignore +9 -3
  2. data/.travis.yml +4 -0
  3. data/CHANGELOG.rdoc +18 -1
  4. data/README.rdoc +77 -19
  5. data/config/cucumber.yml +4 -3
  6. data/features/basic_auth.feature +5 -7
  7. data/features/batch_request.feature +11 -11
  8. data/features/complex_types.feature +11 -11
  9. data/features/query_builder.feature +27 -18
  10. data/features/service.feature +8 -8
  11. data/features/service_manage.feature +27 -12
  12. data/features/service_methods.feature +37 -0
  13. data/features/ssl.feature +4 -4
  14. data/features/step_definitions/pickle_steps.rb +100 -0
  15. data/features/step_definitions/service_steps.rb +99 -65
  16. data/features/support/constants.rb +3 -0
  17. data/features/support/custom_helpers.rb +54 -0
  18. data/features/support/env.rb +0 -10
  19. data/features/support/hooks.rb +1 -1
  20. data/features/support/pickle.rb +82 -0
  21. data/features/type_conversion.feature +10 -10
  22. data/lib/ruby_odata.rb +4 -1
  23. data/lib/ruby_odata/association.rb +36 -0
  24. data/lib/ruby_odata/class_builder.rb +96 -16
  25. data/lib/ruby_odata/helpers.rb +10 -0
  26. data/lib/ruby_odata/operation.rb +7 -5
  27. data/lib/ruby_odata/property_metadata.rb +11 -6
  28. data/lib/ruby_odata/query_builder.rb +20 -1
  29. data/lib/ruby_odata/service.rb +407 -94
  30. data/lib/ruby_odata/version.rb +1 -1
  31. data/ruby_odata.gemspec +2 -0
  32. data/spec/association_spec.rb +48 -0
  33. data/spec/class_builder_spec.rb +11 -2
  34. data/spec/fixtures/inheritance/edmx_pluralsight.xml +111 -0
  35. data/spec/fixtures/inheritance/result_pluralsight_courses.xml +229 -0
  36. data/spec/fixtures/links/result_links_query.xml +6 -0
  37. data/spec/fixtures/partial/partial_feed_metadata.xml +25 -0
  38. data/spec/fixtures/partial/partial_feed_part_1.xml +42 -0
  39. data/spec/fixtures/partial/partial_feed_part_2.xml +42 -0
  40. data/spec/fixtures/partial/partial_feed_part_3.xml +40 -0
  41. data/spec/fixtures/sample_service/edmx_categories_products.xml +1 -0
  42. data/spec/fixtures/sample_service/result_category_names.xml +5 -0
  43. data/spec/fixtures/sample_service/result_entity_category_web_get.xml +29 -0
  44. data/spec/fixtures/sample_service/result_entity_single_category_web_get.xml +23 -0
  45. data/spec/fixtures/sample_service/result_first_category_id.xml +2 -0
  46. data/spec/fixtures/sample_service/result_multiple_category_products.xml +57 -0
  47. data/spec/fixtures/sample_service/result_single_category.xml +18 -0
  48. data/spec/fixtures/sample_service/result_single_product.xml +26 -0
  49. data/spec/fixtures/sample_service/result_single_product_not_found.xml +4 -0
  50. data/spec/fixtures/sap/edmx_sap_demo_flight.xml +62 -58
  51. data/spec/property_metadata_spec.rb +9 -2
  52. data/spec/query_builder_spec.rb +11 -0
  53. data/spec/revised_service_spec.rb +197 -0
  54. data/spec/service_spec.rb +463 -4
  55. data/test/RubyODataService/RubyODataService.sln +20 -0
  56. data/test/RubyODataService/RubyODataService/App_Start/EntityFramework.SqlServerCompact.cs +12 -0
  57. data/test/RubyODataService/RubyODataService/BasicAuth/RubyOData.svc +3 -0
  58. data/test/RubyODataService/RubyODataService/BasicAuth/RubyOData.svc.cs +107 -0
  59. data/test/RubyODataService/RubyODataService/Global.asax +1 -0
  60. data/test/RubyODataService/RubyODataService/Global.asax.cs +49 -0
  61. data/test/RubyODataService/RubyODataService/Models/AuditFields.cs +16 -0
  62. data/test/RubyODataService/RubyODataService/Models/Category.cs +16 -0
  63. data/test/RubyODataService/RubyODataService/Models/Product.cs +20 -0
  64. data/test/RubyODataService/RubyODataService/Properties/AssemblyInfo.cs +35 -0
  65. data/test/RubyODataService/RubyODataService/RubyOData.svc +3 -0
  66. data/test/RubyODataService/RubyODataService/RubyOData.svc.cs +57 -0
  67. data/test/RubyODataService/RubyODataService/RubyODataContext.cs +16 -0
  68. data/test/RubyODataService/RubyODataService/RubyODataService.csproj +159 -0
  69. data/test/RubyODataService/RubyODataService/RubyODataService.csproj.user +31 -0
  70. data/test/RubyODataService/RubyODataService/Web.Debug.config +30 -0
  71. data/test/RubyODataService/RubyODataService/Web.Release.config +31 -0
  72. data/test/RubyODataService/RubyODataService/Web.config +27 -0
  73. data/test/RubyODataService/RubyODataService/bin/EntityFramework.dll +0 -0
  74. data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Edm.dll +0 -0
  75. data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.OData.dll +0 -0
  76. data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Services.Client.dll +0 -0
  77. data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Services.dll +0 -0
  78. data/test/RubyODataService/RubyODataService/bin/Microsoft.Data.Spatial.dll +0 -0
  79. data/test/RubyODataService/RubyODataService/bin/RubyODataService.dll +0 -0
  80. data/test/RubyODataService/RubyODataService/bin/System.Data.SqlServerCe.Entity.dll +0 -0
  81. data/test/RubyODataService/RubyODataService/bin/System.Data.SqlServerCe.dll +0 -0
  82. data/test/RubyODataService/RubyODataService/bin/System.Spatial.dll +0 -0
  83. data/test/RubyODataService/RubyODataService/bin/WebActivator.dll +0 -0
  84. data/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
  85. data/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/README_ENU.txt +0 -0
  86. data/test/RubyODataService/RubyODataService/bin/amd64/Microsoft.VC90.CRT/msvcr90.dll +0 -0
  87. data/test/RubyODataService/RubyODataService/bin/amd64/sqlcecompact40.dll +0 -0
  88. data/test/RubyODataService/RubyODataService/bin/amd64/sqlceer40EN.dll +0 -0
  89. data/test/RubyODataService/RubyODataService/bin/amd64/sqlceme40.dll +0 -0
  90. data/test/RubyODataService/RubyODataService/bin/amd64/sqlceqp40.dll +0 -0
  91. data/test/RubyODataService/RubyODataService/bin/amd64/sqlcese40.dll +0 -0
  92. data/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
  93. data/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/README_ENU.txt +0 -0
  94. data/test/RubyODataService/RubyODataService/bin/x86/Microsoft.VC90.CRT/msvcr90.dll +0 -0
  95. data/test/RubyODataService/RubyODataService/bin/x86/sqlcecompact40.dll +0 -0
  96. data/test/RubyODataService/RubyODataService/bin/x86/sqlceer40EN.dll +0 -0
  97. data/test/RubyODataService/RubyODataService/bin/x86/sqlceme40.dll +0 -0
  98. data/test/RubyODataService/RubyODataService/bin/x86/sqlceqp40.dll +0 -0
  99. data/test/RubyODataService/RubyODataService/bin/x86/sqlcese40.dll +0 -0
  100. data/test/RubyODataService/RubyODataService/packages.config +7 -0
  101. data/test/RubyODataService/packages/EntityFramework.4.2.0.0/EntityFramework.4.2.0.0.nupkg +0 -0
  102. data/test/RubyODataService/packages/EntityFramework.4.2.0.0/lib/net40/EntityFramework.dll +0 -0
  103. data/test/RubyODataService/packages/EntityFramework.4.2.0.0/lib/net40/EntityFramework.xml +13488 -0
  104. data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/Content/App_Start/EntityFramework.SqlServerCompact.cs.pp +12 -0
  105. data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/EULA_ENU.rtf +969 -0
  106. data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/EntityFramework.SqlServerCompact.4.1.8482.2.nupkg +0 -0
  107. data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/lib/System.Data.SqlServerCe.Entity.dll +0 -0
  108. data/test/RubyODataService/packages/EntityFramework.SqlServerCompact.4.1.8482.2/tools/install.ps1 +3 -0
  109. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Content/web.config.transform +8 -0
  110. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
  111. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/README_ENU.txt +0 -0
  112. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/Microsoft.VC90.CRT/msvcr90.dll +0 -0
  113. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlcecompact40.dll +0 -0
  114. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceer40EN.dll +0 -0
  115. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceme40.dll +0 -0
  116. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlceqp40.dll +0 -0
  117. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/amd64/sqlcese40.dll +0 -0
  118. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest +6 -0
  119. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/README_ENU.txt +0 -0
  120. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/Microsoft.VC90.CRT/msvcr90.dll +0 -0
  121. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlcecompact40.dll +0 -0
  122. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceer40EN.dll +0 -0
  123. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceme40.dll +0 -0
  124. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlceqp40.dll +0 -0
  125. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/NativeBinaries/x86/sqlcese40.dll +0 -0
  126. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/SQLCE_EULA_ENU.rtf +778 -0
  127. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/SqlServerCompact.4.0.8482.1.nupkg +0 -0
  128. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/GetSqlCEPostBuildCmd.ps1 +12 -0
  129. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/install.ps1 +11 -0
  130. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/Tools/uninstall.ps1 +9 -0
  131. data/test/RubyODataService/packages/SqlServerCompact.4.0.8482.1/lib/System.Data.SqlServerCe.dll +0 -0
  132. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/DataSvcUtil.exe +0 -0
  133. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/License.rtf +708 -0
  134. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Edm.dll +0 -0
  135. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Edm.xml +4150 -0
  136. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.dll +0 -0
  137. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.OData.xml +1969 -0
  138. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Client.dll +0 -0
  139. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Client.xml +1442 -0
  140. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Design.dll +0 -0
  141. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.Design.xml +191 -0
  142. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.dll +0 -0
  143. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Services.xml +2559 -0
  144. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.dll +0 -0
  145. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.Data.Spatial.xml +15 -0
  146. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/Microsoft.VsDesigner.DataServices.Adapter.dll +0 -0
  147. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/README.txt +6 -0
  148. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/System.Spatial.dll +0 -0
  149. data/test/RubyODataService/packages/WCF DataServices October 2011 CTP/System.Spatial.xml +2276 -0
  150. data/test/RubyODataService/packages/WebActivator.1.0.0.0/WebActivator.1.0.0.0.nupkg +0 -0
  151. data/test/RubyODataService/packages/WebActivator.1.0.0.0/lib/WebActivator.dll +0 -0
  152. data/test/RubyODataService/packages/repositories.config +4 -0
  153. data/test/applicationhost.config.template +2 -2
  154. data/test/blueprints.rb +5 -4
  155. data/test/iisExpress x64.bat b/data/test/iisExpress → x64.bat +0 -0
  156. data/test/iisExpress x86.bat b/data/test/iisExpress → x86.bat +0 -0
  157. data/test/setpath.rb +13 -3
  158. data/test/usage_samples/querying.rb +45 -0
  159. data/test/usage_samples/reflection.rb +16 -0
  160. data/test/usage_samples/sample_data.rb +30 -0
  161. metadata +327 -36
  162. data/test/Cassini x64.bat +0 -1
  163. data/test/Cassini x86.bat +0 -1
  164. data/test/SampleService/App_Code/AuditFields.cs +0 -13
  165. data/test/SampleService/App_Code/Entities.cs +0 -145
  166. data/test/SampleService/App_Code/Model.Designer.cs +0 -578
  167. data/test/SampleService/App_Code/Model.edmx +0 -157
  168. data/test/SampleService/App_Code/ModelContainerExtended.cs +0 -32
  169. data/test/SampleService/App_Data/_TestDB.mdf +0 -0
  170. data/test/SampleService/App_Data/_TestDB_Log.ldf +0 -0
  171. data/test/SampleService/BasicAuth/Entities.svc +0 -1
  172. data/test/SampleService/Entities.svc +0 -1
  173. data/test/SampleService/web.config +0 -37
@@ -1,3 +1,3 @@
1
1
  module OData
2
- VERSION = "0.0.10"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -17,10 +17,12 @@ Gem::Specification.new do |s|
17
17
  s.add_dependency('activesupport', '>= 2.3.5')
18
18
  s.add_dependency('rest-client', '>= 1.5.1')
19
19
  s.add_dependency('nokogiri', '>= 1.4.2')
20
+ s.add_dependency('backports', "~> 2.3.0")
20
21
 
21
22
  s.add_development_dependency('rake', '~> 0.8.7')
22
23
  s.add_development_dependency('rspec', '~> 2.5.0')
23
24
  s.add_development_dependency('cucumber', '~> 0.10.2')
25
+ s.add_development_dependency('pickle', '~> 0.4.10')
24
26
  s.add_development_dependency('faker', '~> 0.9.5')
25
27
  s.add_development_dependency('machinist', '~> 1.0.6')
26
28
  s.add_development_dependency('webmock', '~> 1.6.2')
@@ -0,0 +1,48 @@
1
+ require 'spec_helper'
2
+
3
+ module OData
4
+ describe Association do
5
+ before(:all) do
6
+ stub_request(:get, /http:\/\/test\.com\/test\.svc\/\$metadata(?:\?.+)?/).
7
+ with(:headers => {'Accept'=>'*/*; q=0.5, application/xml', 'Accept-Encoding'=>'gzip, deflate'}).
8
+ to_return(:status => 200, :body => File.new(File.expand_path("../fixtures/sample_service/edmx_categories_products.xml", __FILE__)), :headers => {})
9
+
10
+ @svc = OData::Service.new "http://test.com/test.svc/$metadata"
11
+ @product_category = RSpecSupport::ElementHelpers.string_to_element('<NavigationProperty Name="Category" Relationship="RubyODataService.Category_Products" ToRole="Category_Products_Source" FromRole="Category_Products_Target"/>')
12
+ end
13
+ describe "#initialize singlular navigation property" do
14
+ before { @association = Association.new @product_category, @svc.edmx }
15
+ subject { @association }
16
+
17
+ it "should set the association name" do
18
+ subject.name.should eq 'Category_Products'
19
+ end
20
+ it "should set the association namespace" do
21
+ subject.namespace.should eq 'RubyODataService'
22
+ end
23
+ it "should set the relationship name" do
24
+ subject.relationship.should eq 'RubyODataService.Category_Products'
25
+ end
26
+ context "from_role method" do
27
+ subject { @association.from_role }
28
+ it { should have_key 'Category_Products_Target'}
29
+ it "should set the edmx type" do
30
+ subject['Category_Products_Target'][:edmx_type].should eq 'RubyODataService.Product'
31
+ end
32
+ it "should set the multiplicity" do
33
+ subject['Category_Products_Target'][:multiplicity].should eq '*'
34
+ end
35
+ end
36
+ context "to_role method" do
37
+ subject { @association.to_role }
38
+ it { should have_key 'Category_Products_Source'}
39
+ it "should set the edmx type" do
40
+ subject['Category_Products_Source'][:edmx_type].should eq 'RubyODataService.Category'
41
+ end
42
+ it "should set the multiplicity" do
43
+ subject['Category_Products_Source'][:multiplicity].should eq '1'
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
@@ -3,10 +3,19 @@ require 'spec_helper'
3
3
  module OData
4
4
  describe ClassBuilder do
5
5
  describe "#initialize" do
6
+ before(:each) do
7
+ @methods = []
8
+ @nav_props = []
9
+ @svc = nil
10
+ @namespace = nil
11
+ end
6
12
  it "handles lowercase entities" do
7
- klass = ClassBuilder.new 'product', [], []
13
+ klass = ClassBuilder.new 'product', @methods, @nav_props, @svc, @namespace
8
14
  result = klass.build
9
- result.should == Product
15
+ result.should eq Product
16
+ end
17
+ it "should take in an instance of the service" do
18
+ klass = ClassBuilder.new 'product', @methods, @nav_props, @svc, @namespace
10
19
  end
11
20
  end
12
21
  end
@@ -0,0 +1,111 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="yes"?>
2
+ <edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx">
3
+ <edmx:DataServices xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:DataServiceVersion="1.0">
4
+ <Schema Namespace="Pluralsight.OData.Model" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://schemas.microsoft.com/ado/2006/04/edm">
5
+ <EntityType Name="CourseModule" BaseType="Pluralsight.OData.Model.ModelItemBase">
6
+ <Property Name="PublishDate" Type="Edm.DateTime" Nullable="false" />
7
+ <Property Name="Author" Type="Edm.String" Nullable="true" />
8
+ </EntityType>
9
+ <EntityType Name="ModelItemBase" Abstract="true">
10
+ <Key>
11
+ <PropertyRef Name="Title" />
12
+ </Key>
13
+ <Property Name="Title" Type="Edm.String" Nullable="false" />
14
+ <Property Name="Description" Type="Edm.String" Nullable="true" />
15
+ <Property Name="VideoLength" Type="Edm.String" Nullable="true" />
16
+ <Property Name="Category" Type="Edm.String" Nullable="true" />
17
+ </EntityType>
18
+ <EntityType Name="Course" BaseType="Pluralsight.OData.Model.ModelItemBase">
19
+ <Property Name="IsTutorial" Type="Edm.Boolean" Nullable="false" />
20
+ <NavigationProperty Name="Modules" Relationship="Pluralsight.OData.Model.Course_Modules" FromRole="Course" ToRole="Modules" />
21
+ <Property Name="Name" Type="Edm.String" Nullable="true" />
22
+ <Property Name="ShortDescription" Type="Edm.String" Nullable="true" />
23
+ <Property Name="Subcategory" Type="Edm.String" Nullable="true" />
24
+ </EntityType>
25
+ <EntityType Name="Category" BaseType="Pluralsight.OData.Model.TagBase">
26
+ <NavigationProperty Name="Modules" Relationship="Pluralsight.OData.Model.Category_Modules" FromRole="Category" ToRole="Modules" />
27
+ <NavigationProperty Name="Courses" Relationship="Pluralsight.OData.Model.Category_Courses" FromRole="Category" ToRole="Courses" />
28
+ </EntityType>
29
+ <EntityType Name="TagBase" Abstract="true">
30
+ <Key>
31
+ <PropertyRef Name="Name" />
32
+ </Key>
33
+ <Property Name="Name" Type="Edm.String" Nullable="false" />
34
+ </EntityType>
35
+ <EntityType Name="Tag" BaseType="Pluralsight.OData.Model.TagBase">
36
+ <NavigationProperty Name="Modules" Relationship="Pluralsight.OData.Model.Tag_Modules" FromRole="Tag" ToRole="Modules" />
37
+ <NavigationProperty Name="Courses" Relationship="Pluralsight.OData.Model.Tag_Courses" FromRole="Tag" ToRole="Courses" />
38
+ </EntityType>
39
+ <EntityType Name="Topic" BaseType="Pluralsight.OData.Model.TagBase">
40
+ <NavigationProperty Name="Courses" Relationship="Pluralsight.OData.Model.Topic_Courses" FromRole="Topic" ToRole="Courses" />
41
+ </EntityType>
42
+ <EntityType Name="Author">
43
+ <Key>
44
+ <PropertyRef Name="AuthorName" />
45
+ </Key>
46
+ <Property Name="FirstName" Type="Edm.String" Nullable="true" />
47
+ <Property Name="LastName" Type="Edm.String" Nullable="true" />
48
+ <Property Name="FullName" Type="Edm.String" Nullable="true" />
49
+ <Property Name="AuthorName" Type="Edm.String" Nullable="false" />
50
+ </EntityType>
51
+ <Association Name="Course_Modules">
52
+ <End Role="Course" Type="Pluralsight.OData.Model.Course" Multiplicity="*" />
53
+ <End Role="Modules" Type="Pluralsight.OData.Model.CourseModule" Multiplicity="*" />
54
+ </Association>
55
+ <Association Name="Category_Modules">
56
+ <End Role="Category" Type="Pluralsight.OData.Model.Category" Multiplicity="*" />
57
+ <End Role="Modules" Type="Pluralsight.OData.Model.CourseModule" Multiplicity="*" />
58
+ </Association>
59
+ <Association Name="Category_Courses">
60
+ <End Role="Category" Type="Pluralsight.OData.Model.Category" Multiplicity="*" />
61
+ <End Role="Courses" Type="Pluralsight.OData.Model.Course" Multiplicity="*" />
62
+ </Association>
63
+ <Association Name="Tag_Modules">
64
+ <End Role="Tag" Type="Pluralsight.OData.Model.Tag" Multiplicity="*" />
65
+ <End Role="Modules" Type="Pluralsight.OData.Model.CourseModule" Multiplicity="*" />
66
+ </Association>
67
+ <Association Name="Tag_Courses">
68
+ <End Role="Tag" Type="Pluralsight.OData.Model.Tag" Multiplicity="*" />
69
+ <End Role="Courses" Type="Pluralsight.OData.Model.Course" Multiplicity="*" />
70
+ </Association>
71
+ <Association Name="Topic_Courses">
72
+ <End Role="Topic" Type="Pluralsight.OData.Model.Topic" Multiplicity="*" />
73
+ <End Role="Courses" Type="Pluralsight.OData.Model.Course" Multiplicity="*" />
74
+ </Association>
75
+ </Schema>
76
+ <Schema Namespace="Pluralsight.OData" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://schemas.microsoft.com/ado/2006/04/edm">
77
+ <EntityContainer Name="CourseProvider" m:IsDefaultEntityContainer="true">
78
+ <EntitySet Name="Modules" EntityType="Pluralsight.OData.Model.CourseModule" />
79
+ <EntitySet Name="Courses" EntityType="Pluralsight.OData.Model.Course" />
80
+ <EntitySet Name="Categories" EntityType="Pluralsight.OData.Model.Category" />
81
+ <EntitySet Name="Tags" EntityType="Pluralsight.OData.Model.Tag" />
82
+ <EntitySet Name="Topics" EntityType="Pluralsight.OData.Model.Topic" />
83
+ <EntitySet Name="Authors" EntityType="Pluralsight.OData.Model.Author" />
84
+ <AssociationSet Name="Course_Modules" Association="Pluralsight.OData.Model.Course_Modules">
85
+ <End Role="Course" EntitySet="Courses" />
86
+ <End Role="Modules" EntitySet="Modules" />
87
+ </AssociationSet>
88
+ <AssociationSet Name="Category_Modules" Association="Pluralsight.OData.Model.Category_Modules">
89
+ <End Role="Category" EntitySet="Categories" />
90
+ <End Role="Modules" EntitySet="Modules" />
91
+ </AssociationSet>
92
+ <AssociationSet Name="Category_Courses" Association="Pluralsight.OData.Model.Category_Courses">
93
+ <End Role="Category" EntitySet="Categories" />
94
+ <End Role="Courses" EntitySet="Courses" />
95
+ </AssociationSet>
96
+ <AssociationSet Name="Tag_Modules" Association="Pluralsight.OData.Model.Tag_Modules">
97
+ <End Role="Tag" EntitySet="Tags" />
98
+ <End Role="Modules" EntitySet="Modules" />
99
+ </AssociationSet>
100
+ <AssociationSet Name="Tag_Courses" Association="Pluralsight.OData.Model.Tag_Courses">
101
+ <End Role="Tag" EntitySet="Tags" />
102
+ <End Role="Courses" EntitySet="Courses" />
103
+ </AssociationSet>
104
+ <AssociationSet Name="Topic_Courses" Association="Pluralsight.OData.Model.Topic_Courses">
105
+ <End Role="Topic" EntitySet="Topics" />
106
+ <End Role="Courses" EntitySet="Courses" />
107
+ </AssociationSet>
108
+ </EntityContainer>
109
+ </Schema>
110
+ </edmx:DataServices>
111
+ </edmx:Edmx>
@@ -0,0 +1,229 @@
1
+ <?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
2
+ <feed xml:base="http://www.pluralsight-training.net/odata/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
3
+ <title type="text">Courses</title>
4
+ <id>http://www.pluralsight-training.net/Odata/Courses</id>
5
+ <updated>2011-09-27T23:29:21Z</updated>
6
+ <link rel="self" title="Courses" href="Courses" />
7
+ <entry>
8
+ <id>http://www.pluralsight-training.net/odata/Courses('.NET%20Distributed%20Systems%20Architecture')</id>
9
+ <title type="text"></title>
10
+ <updated>2011-09-27T23:29:21Z</updated>
11
+ <author>
12
+ <name />
13
+ </author>
14
+ <link rel="edit" title="Course" href="Courses('.NET%20Distributed%20Systems%20Architecture')" />
15
+ <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Modules" type="application/atom+xml;type=feed" title="Modules" href="Courses('.NET%20Distributed%20Systems%20Architecture')/Modules" />
16
+ <category term="Pluralsight.OData.Model.Course" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
17
+ <content type="application/xml">
18
+ <m:properties>
19
+ <d:Title>.NET Distributed Systems Architecture</d:Title>
20
+ <d:Description xml:space="preserve">This course provides an overview of the architecture and technology used to build distributed
21
+ sytems on the Microsoft platform. The course looks at the general knowledge one needs prior to building a
22
+ distributed system. There is a focus on design patterns and concepts as well as an overview of the key technologies
23
+ used by Microsoft .NET developers.
24
+ </d:Description>
25
+ <d:VideoLength>05:29:48</d:VideoLength>
26
+ <d:Category>WCF</d:Category>
27
+ <d:IsTutorial m:type="Edm.Boolean">false</d:IsTutorial>
28
+ <d:Name>dotnet-distributed-architecture</d:Name>
29
+ <d:ShortDescription xml:space="preserve">This course provides an overview of the architecture and technology used to build distributed
30
+ sytems on the Microsoft platform.
31
+ </d:ShortDescription>
32
+ <d:Subcategory></d:Subcategory>
33
+ </m:properties>
34
+ </content>
35
+ </entry>
36
+ <entry>
37
+ <id>http://www.pluralsight-training.net/odata/Courses('Introduction%20to%20WCF')</id>
38
+ <title type="text"></title>
39
+ <updated>2011-09-27T23:29:21Z</updated>
40
+ <author>
41
+ <name />
42
+ </author>
43
+ <link rel="edit" title="Course" href="Courses('Introduction%20to%20WCF')" />
44
+ <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Modules" type="application/atom+xml;type=feed" title="Modules" href="Courses('Introduction%20to%20WCF')/Modules" />
45
+ <category term="Pluralsight.OData.Model.Course" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
46
+ <content type="application/xml">
47
+ <m:properties>
48
+ <d:Title>Introduction to WCF</d:Title>
49
+ <d:Description>Windows Communication Foundation (WCF) is the next-generation platform for building connected systems on the Windows platform. WCF makes it possible to build secure, reliable, and transacted services that can be composed into service-oriented applications. WCF makes this easy through a simplified programming model that unifies and improves many of the previous .NET distributed technologies like ASP.NET Web Services (ASMX), Web Services Enhancements (WSE), .NET Remoting, .NET Enterprise Services (COM+), and System.Messaging. Not only is WCF simpler to use than its predecessors, it's also more flexible and highly interoperable thanks to its support for industry standards and protocols like REST, SOAP, and the various WS-* specifications. WCF is sure to change the way every .NET developer builds connected systems in the years ahead. This course provides fast-paced exposure to WCF and will help you get started today.</d:Description>
50
+ <d:VideoLength>04:31:52</d:VideoLength>
51
+ <d:Category>WCF</d:Category>
52
+ <d:IsTutorial m:type="Edm.Boolean">false</d:IsTutorial>
53
+ <d:Name>wcf-fundamentals</d:Name>
54
+ <d:ShortDescription>Learn how to build modern connected systems on the Microsoft platform using Windows Communication Foundation.</d:ShortDescription>
55
+ <d:Subcategory></d:Subcategory>
56
+ </m:properties>
57
+ </content>
58
+ </entry>
59
+ <entry>
60
+ <id>http://www.pluralsight-training.net/odata/Courses('WCF%204%20New%20Features')</id>
61
+ <title type="text"></title>
62
+ <updated>2011-09-27T23:29:21Z</updated>
63
+ <author>
64
+ <name />
65
+ </author>
66
+ <link rel="edit" title="Course" href="Courses('WCF%204%20New%20Features')" />
67
+ <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Modules" type="application/atom+xml;type=feed" title="Modules" href="Courses('WCF%204%20New%20Features')/Modules" />
68
+ <category term="Pluralsight.OData.Model.Course" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
69
+ <content type="application/xml">
70
+ <m:properties>
71
+ <d:Title>WCF 4 New Features</d:Title>
72
+ <d:Description xml:space="preserve">This course covers updates to WCF between 3.5 and 4.0. A number of changes were made to make
73
+ configuration easier and to better integrate WCF REST with ASP.NET. WCF 4.0 also includes new features
74
+ to support Discovery and Routing.
75
+ </d:Description>
76
+ <d:VideoLength>02:30:04</d:VideoLength>
77
+ <d:Category>WCF</d:Category>
78
+ <d:IsTutorial m:type="Edm.Boolean">false</d:IsTutorial>
79
+ <d:Name>wcf4-newfeatures</d:Name>
80
+ <d:ShortDescription xml:space="preserve">This course explains a number of the enhancements to WCF 4.0 over the WCF 3.5 SP1 release.
81
+ </d:ShortDescription>
82
+ <d:Subcategory></d:Subcategory>
83
+ </m:properties>
84
+ </content>
85
+ </entry>
86
+ <entry>
87
+ <id>http://www.pluralsight-training.net/odata/Courses('WCF%20Advanced%20Topics')</id>
88
+ <title type="text"></title>
89
+ <updated>2011-09-27T23:29:21Z</updated>
90
+ <author>
91
+ <name />
92
+ </author>
93
+ <link rel="edit" title="Course" href="Courses('WCF%20Advanced%20Topics')" />
94
+ <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Modules" type="application/atom+xml;type=feed" title="Modules" href="Courses('WCF%20Advanced%20Topics')/Modules" />
95
+ <category term="Pluralsight.OData.Model.Course" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
96
+ <content type="application/xml">
97
+ <m:properties>
98
+ <d:Title>WCF Advanced Topics</d:Title>
99
+ <d:Description>Windows Communication Foundation (WCF) is the next-generation platform for building connected systems on the Windows platform. WCF makes it possible to build secure, reliable, and transacted services that can be composed into service-oriented applications. WCF makes this easy through a simplified programming model that unifies and improves many of the previous .NET distributed technologies like ASP.NET Web Services (ASMX), Web Services Enhancements (WSE), .NET Remoting, .NET Enterprise Services (COM+), and System.Messaging. Not only is WCF simpler to use than its predecessors, it's also more flexible and highly interoperable thanks to its support for industry standards and protocols like REST, SOAP, and the various WS-* specifications. WCF is sure to change the way every .NET developer builds connected systems in the years ahead. This course covers the more advanced topics in WCF.</d:Description>
100
+ <d:VideoLength>04:10:43</d:VideoLength>
101
+ <d:Category>WCF</d:Category>
102
+ <d:IsTutorial m:type="Edm.Boolean">false</d:IsTutorial>
103
+ <d:Name>wcf-advanced-topics</d:Name>
104
+ <d:ShortDescription>Learn how to build modern connected systems on the Microsoft platform using Windows Communication Foundation.</d:ShortDescription>
105
+ <d:Subcategory></d:Subcategory>
106
+ </m:properties>
107
+ </content>
108
+ </entry>
109
+ <entry>
110
+ <id>http://www.pluralsight-training.net/odata/Courses('WCF%20by%20Example')</id>
111
+ <title type="text"></title>
112
+ <updated>2011-09-27T23:29:21Z</updated>
113
+ <author>
114
+ <name />
115
+ </author>
116
+ <link rel="edit" title="Course" href="Courses('WCF%20by%20Example')" />
117
+ <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Modules" type="application/atom+xml;type=feed" title="Modules" href="Courses('WCF%20by%20Example')/Modules" />
118
+ <category term="Pluralsight.OData.Model.Course" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
119
+ <content type="application/xml">
120
+ <m:properties>
121
+ <d:Title>WCF by Example</d:Title>
122
+ <d:Description xml:space="preserve">Windows Communication Foundation (WCF) is the next-generation platform for building connected systems on the Windows platform. WCF makes it possible to build secure, reliable, and transacted services that can be composed into service-oriented applications. </d:Description>
123
+ <d:VideoLength>01:58:18</d:VideoLength>
124
+ <d:Category>WCF</d:Category>
125
+ <d:IsTutorial m:type="Edm.Boolean">false</d:IsTutorial>
126
+ <d:Name>wcf-by-example</d:Name>
127
+ <d:ShortDescription>Learn how to build modern connected systems on the Microsoft platform using Windows Communication Foundation through sample demos.</d:ShortDescription>
128
+ <d:Subcategory></d:Subcategory>
129
+ </m:properties>
130
+ </content>
131
+ </entry>
132
+ <entry>
133
+ <id>http://www.pluralsight-training.net/odata/Courses('WCF%20For%20Architects')</id>
134
+ <title type="text"></title>
135
+ <updated>2011-09-27T23:29:21Z</updated>
136
+ <author>
137
+ <name />
138
+ </author>
139
+ <link rel="edit" title="Course" href="Courses('WCF%20For%20Architects')" />
140
+ <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Modules" type="application/atom+xml;type=feed" title="Modules" href="Courses('WCF%20For%20Architects')/Modules" />
141
+ <category term="Pluralsight.OData.Model.Course" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
142
+ <content type="application/xml">
143
+ <m:properties>
144
+ <d:Title>WCF For Architects</d:Title>
145
+ <d:Description xml:space="preserve">This course provides an introduction to WCF. It then covers how to use WCF for
146
+ the enterprise and for the Web. It covers two aspects all architects and .NET developers need to understand:
147
+ versioning and serialization.
148
+ </d:Description>
149
+ <d:VideoLength>04:03:23</d:VideoLength>
150
+ <d:Category>WCF</d:Category>
151
+ <d:IsTutorial m:type="Edm.Boolean">false</d:IsTutorial>
152
+ <d:Name>wcf-for-architects</d:Name>
153
+ <d:ShortDescription xml:space="preserve">This course covers how to incorporate WCF in your application architecture.
154
+ </d:ShortDescription>
155
+ <d:Subcategory></d:Subcategory>
156
+ </m:properties>
157
+ </content>
158
+ </entry>
159
+ <entry>
160
+ <id>http://www.pluralsight-training.net/odata/Courses('WCF%20Fundamentals')</id>
161
+ <title type="text"></title>
162
+ <updated>2011-09-27T23:29:21Z</updated>
163
+ <author>
164
+ <name />
165
+ </author>
166
+ <link rel="edit" title="Course" href="Courses('WCF%20Fundamentals')" />
167
+ <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Modules" type="application/atom+xml;type=feed" title="Modules" href="Courses('WCF%20Fundamentals')/Modules" />
168
+ <category term="Pluralsight.OData.Model.Course" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
169
+ <content type="application/xml">
170
+ <m:properties>
171
+ <d:Title>WCF Fundamentals</d:Title>
172
+ <d:Description>Windows Communication Foundation (WCF) is the next-generation platform for building connected systems on the Windows platform. WCF makes it possible to build secure, reliable, and transacted services that can be composed into service-oriented applications. WCF makes this easy through a simplified programming model that unifies and improves many of the previous .NET distributed technologies like ASP.NET Web Services (ASMX), Web Services Enhancements (WSE), .NET Remoting, .NET Enterprise Services (COM+), and System.Messaging. Not only is WCF simpler to use than its predecessors, it's also more flexible and highly interoperable thanks to its support for industry standards and protocols like REST, SOAP, and the various WS-* specifications. WCF is sure to change the way every .NET developer builds connected systems in the years ahead. This course covers the system-design features of WCF.</d:Description>
173
+ <d:VideoLength>06:34:26</d:VideoLength>
174
+ <d:Category>WCF</d:Category>
175
+ <d:IsTutorial m:type="Edm.Boolean">false</d:IsTutorial>
176
+ <d:Name>wcf-design-concepts</d:Name>
177
+ <d:ShortDescription>Learn how to build modern connected systems on the Microsoft platform using Windows Communication Foundation.</d:ShortDescription>
178
+ <d:Subcategory></d:Subcategory>
179
+ </m:properties>
180
+ </content>
181
+ </entry>
182
+ <entry>
183
+ <id>http://www.pluralsight-training.net/odata/Courses('WCF%20REST%20Starter%20Kit%20by%20Example')</id>
184
+ <title type="text"></title>
185
+ <updated>2011-09-27T23:29:21Z</updated>
186
+ <author>
187
+ <name />
188
+ </author>
189
+ <link rel="edit" title="Course" href="Courses('WCF%20REST%20Starter%20Kit%20by%20Example')" />
190
+ <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Modules" type="application/atom+xml;type=feed" title="Modules" href="Courses('WCF%20REST%20Starter%20Kit%20by%20Example')/Modules" />
191
+ <category term="Pluralsight.OData.Model.Course" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
192
+ <content type="application/xml">
193
+ <m:properties>
194
+ <d:Title>WCF REST Starter Kit by Example</d:Title>
195
+ <d:Description>Learn how to become productive with the WCF REST Starter Kit. You'll see how to install the WCF REST Starter Kit on your machine, navigate the documentation, samples, and project templates, and you'll see how to quickly get started with a simple RESTful service implementation. We then explore different data representations, resource services, atom and atompub services, as well as POX (plain old XML) services.</d:Description>
196
+ <d:VideoLength>01:58:12</d:VideoLength>
197
+ <d:Category>WCF</d:Category>
198
+ <d:IsTutorial m:type="Edm.Boolean">false</d:IsTutorial>
199
+ <d:Name>wcf-rest-by-example</d:Name>
200
+ <d:ShortDescription>Learn how to use the WCF REST Starter Kit.</d:ShortDescription>
201
+ <d:Subcategory></d:Subcategory>
202
+ </m:properties>
203
+ </content>
204
+ </entry>
205
+ <entry>
206
+ <id>http://www.pluralsight-training.net/odata/Courses('WCF%20REST%20Starter%20Kit%20HttpClient%20by%20Example')</id>
207
+ <title type="text"></title>
208
+ <updated>2011-09-27T23:29:21Z</updated>
209
+ <author>
210
+ <name />
211
+ </author>
212
+ <link rel="edit" title="Course" href="Courses('WCF%20REST%20Starter%20Kit%20HttpClient%20by%20Example')" />
213
+ <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/Modules" type="application/atom+xml;type=feed" title="Modules" href="Courses('WCF%20REST%20Starter%20Kit%20HttpClient%20by%20Example')/Modules" />
214
+ <category term="Pluralsight.OData.Model.Course" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
215
+ <content type="application/xml">
216
+ <m:properties>
217
+ <d:Title>WCF REST Starter Kit HttpClient by Example</d:Title>
218
+ <d:Description>Learn how to become productive with the WCF REST Starter Kit. You'll see how to install the WCF REST Starter Kit on your machine, navigate the documentation, samples, and project templates, and you'll see how to quickly get started with a simple RESTful service implementation. We then explore different data representations, resource services, atom and atompub services, as well as POX (plain old XML) services.</d:Description>
219
+ <d:VideoLength>01:01:32</d:VideoLength>
220
+ <d:Category>WCF</d:Category>
221
+ <d:IsTutorial m:type="Edm.Boolean">false</d:IsTutorial>
222
+ <d:Name>wcf-rest-httpclient-by-example</d:Name>
223
+ <d:ShortDescription>Learn how to use the WCF REST Starter Kit.</d:ShortDescription>
224
+ <d:Subcategory></d:Subcategory>
225
+ </m:properties>
226
+ </content>
227
+ </entry>
228
+
229
+ </feed>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
2
+ <links xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices">
3
+ <uri>http://test.com/SampleService/RubyOData.svc/Products(1)</uri>
4
+ <uri>http://test.com/SampleService/RubyOData.svc/Products(2)</uri>
5
+ <uri>http://test.com/SampleService/RubyOData.svc/Products(3)</uri>
6
+ </links>
@@ -0,0 +1,25 @@
1
+ <edmx:Edmx xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" Version="1.0">
2
+ <edmx:DataServices xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:DataServiceVersion="1.0">
3
+ <Schema xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
4
+ <EntityType Name="Partial">
5
+ <Key>
6
+ <PropertyRef Name="CustomerID"/>
7
+ </Key>
8
+ <Property Name="CustomerID" Type="Edm.String" Nullable="false" MaxLength="5" Unicode="true" FixedLength="true"/>
9
+ <Property Name="CompanyName" Type="Edm.String" Nullable="false" MaxLength="40" Unicode="true" FixedLength="false"/>
10
+ <Property Name="ContactName" Type="Edm.String" Nullable="true" MaxLength="30" Unicode="true" FixedLength="false"/>
11
+ <Property Name="ContactTitle" Type="Edm.String" Nullable="true" MaxLength="30" Unicode="true" FixedLength="false"/>
12
+ <Property Name="Address" Type="Edm.String" Nullable="true" MaxLength="60" Unicode="true" FixedLength="false"/>
13
+ <Property Name="City" Type="Edm.String" Nullable="true" MaxLength="15" Unicode="true" FixedLength="false"/>
14
+ <Property Name="Region" Type="Edm.String" Nullable="true" MaxLength="15" Unicode="true" FixedLength="false"/>
15
+ <Property Name="PostalCode" Type="Edm.String" Nullable="true" MaxLength="10" Unicode="true" FixedLength="false"/>
16
+ <Property Name="Country" Type="Edm.String" Nullable="true" MaxLength="15" Unicode="true" FixedLength="false"/>
17
+ <Property Name="Phone" Type="Edm.String" Nullable="true" MaxLength="24" Unicode="true" FixedLength="false"/>
18
+ <Property Name="Fax" Type="Edm.String" Nullable="true" MaxLength="24" Unicode="true" FixedLength="false"/>
19
+ </EntityType>
20
+ <EntityContainer xmlns:p7="http://schemas.microsoft.com/ado/2009/02/edm/annotation" p7:LazyLoadingEnabled="true" m:IsDefaultEntityContainer="true">
21
+ <EntitySet Name="Partials" EntityType="Partial"/>
22
+ </EntityContainer>
23
+ </Schema>
24
+ </edmx:DataServices>
25
+ </edmx:Edmx>