https://www.developerfusion.com/t/ado.net/media/view/video/ Video ADO.NET Media from Developer Fusion 2011-03-04T11:32:00.00Z http://www.developerfusion.com/media/76318/adonet-restful-data-services/ ADO.NET: RESTful Data Services 2010-02-01T03:47:00.00Z Data and Modeling Group Architect, Pablo Castro, discusses RESTful ADO.NET Data Services with Ted Neward. James Crowley http://www.developerfusion.com/media/76325/object-relational-mapping-and-orm-entity-framework-ef-and-m-programming-language/ Object Relational Mapping and (ORM), Entity Framework (EF), and M Programming Language 2010-02-01T03:47:00.00Z Ted Neward and Danny Simmons of the ADO.NET team discuss the Entity Framework, ORMs and OSLO. James Crowley http://www.developerfusion.com/media/72504/microsoft-pdc-2009-paul-kimmel/ Microsoft PDC 2009 - Paul Kimmel 2009-12-08T02:19:00.00Z Paul Kimmel, author of LINQ Unleashed for C# and the upcoming Sams Teach Yourself the ADO.NET Entity Framework in 24 Hours tells us about his experience at Microsoft PDC 2009. James Crowley http://www.developerfusion.com/media/113707/adonet-data-services-service-operations/ ADO.NET Data Services - Service Operations 2011-03-04T11:23:00.00Z ADO.NET Data Services has a service-side facility for adding pre-built operations ("Service Operations") which can run arbitrary logic which can additionally be parameterised using simple serialised types from the URI. In this video, we take a look at building such Service Operations. James Crowley http://www.developerfusion.com/media/113708/adonet-data-services-query-interceptors/ ADO.NET Data Services - Query Interceptors 2011-03-04T11:23:00.00Z ADO.NET Data Services has a facility whereby we can plug-in code to run whenever a query for a particular entity set is executed. In this video, we take a look at how we can write these Query Interceptors. James Crowley http://www.developerfusion.com/media/113709/adonet-data-services-querying-with-linq/ ADO.NET Data Services - Querying with LINQ 2011-03-04T11:24:00.00Z For a .NET client that interacts with an ADO.NET Data Service, we can use LINQ in order to construct the query on the client side. We construct a query using LINQ and the client-side framework translates that into a URI for us. In this video, we take a quick look James Crowley http://www.developerfusion.com/media/113710/adonet-data-services-a-basic-net-client/ ADO.NET Data Services - A Basic .NET Client 2011-03-04T11:24:00.00Z In this video we'll take a quick look at how we can build a simple, read-only .NET client against an ADO.NET data service and how we can continue to use the URI-based query mechanism to get data from that service. James Crowley http://www.developerfusion.com/media/113711/adonet-data-services-a-basic-silverlight-client/ ADO.NET Data Services - A Basic Silverlight Client 2011-03-04T11:24:00.00Z In this video we'll use the "ASP.NET Data Services Silverlight Add-On" in order to build a simple read-only Silverlight client for an ADO.NET Data Service. James Crowley http://www.developerfusion.com/media/113712/adonet-data-services-a-basic-ajax-client/ ADO.NET Data Services - A Basic AJAX Client 2011-03-04T11:24:00.00Z In this video we'll take a quick look at building a basic, read-only AJAX client for an ADO.NET Data Service. James Crowley http://www.developerfusion.com/media/113713/adonet-data-services-querying-with-uris/ ADO.NET Data Services - Querying with URI's 2011-03-04T11:24:00.00Z ADO.NET Data Services offers data over RESTful web services - in this video we look at how we can build URI's to represent the different server-side resources that we want to access. James Crowley http://www.developerfusion.com/media/113714/adonet-data-services-surfacing-data/ ADO.NET Data Services - Surfacing Data 2011-03-04T11:24:00.00Z ADO.NET Data Services let us make data widely available through RESTful web services. In this video we take a look at how we can offer data from the ADO.NET Entity Framework, LINQ to SQL and any arbitrary data. James Crowley http://www.developerfusion.com/media/113721/sql-server-2008-table-valued-parameters/ SQL Server 2008 - Table Valued Parameters 2011-03-04T11:24:00.00Z SQL Server 2008 (and ADO.NET in .NET Framework V3.5) have a capability whereby you can pass a whole table of data into a stored procedure in one go. Rather than passing XML or a string, multi-valued parameters can be represented quite naturally.In this video, we take a quick look. James Crowley http://www.developerfusion.com/media/113729/linq-to-entities-deferred-loading-of-entities/ LINQ to Entities - Deferred Loading of Entities 2011-03-04T11:24:00.00Z ADO.NET V3.0 will come with the ADO.NET Entity Framework and a flexible object relational mapping layer that plugs in to LINQ - LINQ to Entities. In this video we'll take a look at how the framework deals with the deferred loading of related entities from the database. James Crowley http://www.developerfusion.com/media/113730/linq-to-entities-defining-and-executing-queries/ LINQ to Entities - Defining and Executing Queries 2011-03-04T11:24:00.00Z ADO.NET V3.0 will come with the ADO.NET Entity Framework and a flexible object relational mapping layer that plugs in to LINQ - LINQ to Entities. In this video we'll take a look at the difference between defining a query and executing a query. James Crowley http://www.developerfusion.com/media/113731/linq-to-entities-metadata-generation-tools/ LINQ to Entities - Metadata Generation Tools 2011-03-04T11:24:00.00Z ADO.NET V3.0 will come with the ADO.NET Entity Framework and a flexible object relational mapping layer that plugs in to LINQ - LINQ to Entities. In this video we'll take a look at how we can use metadata generation tools in order to produce the necessary models for the Entity Framework. James Crowley http://www.developerfusion.com/media/113732/linq-to-entities-the-objectcontext/ LINQ to Entities - The ObjectContext 2011-03-04T11:24:00.00Z ADO.NET V3.0 will come with the ADO.NET Entity Framework and a flexible object relational mapping layer that plugs in to LINQ - LINQ to Entities. In this video we'll take a look at one of the key types in the object model, the ObjectContext that encapsulates a connection to our model, the metadat. James Crowley http://www.developerfusion.com/media/113733/linq-to-entities-intro-metadata-querying-updating/ LINQ to Entities - Intro (Metadata, Querying, Updating) 2011-03-04T11:24:00.00Z ADO.NET V3.0 will come with the ADO.NET Entity Framework and a flexible object relational mapping layer that plugs in to LINQ - LINQ to Entities. In this video we take a quick look at how to obtain build a model in order to query and update data. Later videos will examine these topics in greater depth. James Crowley http://www.developerfusion.com/media/113936/using-asynchronous-commands-in-adonet-20/ Using asynchronous commands in ADO.NET 2.0 2011-03-04T11:32:00.00Z In this session we'll look at how we can submit work to the database asynchronously in ADO.NET 2.0. James Crowley http://www.developerfusion.com/media/9748/adonet-data-services-in-net-35-service-pack-1-beta1-with-aspnet-ajax/ ADO.NET Data Services in .NET 3.5 Service Pack 1 Beta1 with ASP.NET AJAX 2008-05-30T20:30:00.00Z Wally walks through using ASP.NET Podcast Show #114 - ADO.NET Data Services in .NET 3.5 Service Pack 1 Beta1 with ASP.NET AJAX. James Crowley