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
data/lib/ruby_odata/version.rb
CHANGED
data/ruby_odata.gemspec
CHANGED
@@ -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
|
data/spec/class_builder_spec.rb
CHANGED
@@ -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
|
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>
|