Client Library : System.Data.Services.Client
Server : System.Data.Services
White papers coming soon !!
[These code snippets are based on features in the SP1 RTM release, Read about it here : RTM is here! ] Quite a few times, I forget the syntax for certain tasks while Creating a Data Service . To avoid remembering the syntax, I came up with a couple of Code Snippets that I use for Query Interceptors and Change Interceptors. You can download the Code Snippets Here [Edit : Alternate download link at the bottom of the post .]...
Here you go ! Install the latest bits of Astoria and play to your heart's content .... Download here : Microsoft .NET Framework 3.5 Service Pack 1 <blurb> The ADO.NET Data Services Framework consists of a combination of patterns and libraries, which enable data to be exposed as a flexible REST (Representational State Transfer)-based data service that can be consumed by Web clients in a corporate network or across the Internet. The ADO.NET Data Services Framework makes data service creation...
Hi, For most of the code samples that I post on my blog , I use “Insert Code for Windows Live Writer” plugin for WLW to format code snippets and absolutely love the way that the code snippet turns out on the blog. I use the Dark Theme by Orren Ellenbogen for my VS at home and at work and wanted to mirror the code snippets on my blog to turn up the same way . ...
With how easy it is to write simple & complicated templates, you would want to debug the template generation or enable certain scenarios wherein you have to do complex manipulation of data using the existing data being bound. Events The Templating engine fires the ItemCreated event which is similar to the OnItemCreated of the ASP.NET DataGrid. You can subscribe to the event by calling the add_itemCreated method on the instance of the DataView. instanceOfDataView.add_itemCreated(onItemCreated) ; function onItemCreated(sender,eventArgs) { //Get the...
If you are just tuning in , you can read Part 1 here Parent Entity Child Entity List Properties ListID ListTitle Associations ListElements ListElement Properties ListElementText ListElementID Associations List In the last part , we looked at using the Events from the DataView to render another template for the inner details. Looking further , I discovered that there is a syntax for injecting code into the template. The code injected into the template looks...
By now , you must have heard about the new JavaScript templating engine with the release of ASP.NET AJAX 4.0 CodePlex Preview 1 This post will show you how to use the built-in control DataView to build a master details view. As an addition , I will use an astoria service to serve the data and the Ajax Library to retrieve the data. Consider the following model.. Parent Entity Child Entity List Properties ListID ListTitle Associations ListElements...