Browse by Tags
All Tags »
Orcas (
RSS)
DEV353: Data Access in Visual Studio 2008 - Slide Decks and Demos Earlier this week I presented at Tech Ed Israel 2008 . My session title was What's new around Data Access in Visual Studio 2008 , and I talked about the following topics: DataSets Enhancements in Visual Studio 2008 and .Net Framework 3.5 ( watch the screencast ) Adding a Service Reference to a service with DataSets as part of its operations signature The ability to separate between the DataSets project and the TableAdapters Project...
Service Factory: Modeling Edition - A New CTP for Visual Studio 2008 The patterns & practices group has released a new CTP of the Service Factory: Modeling Edition that works with Visual Studio 2008 . Note that this release is only a CTP, and the full release is scheduled for February 2008, around the time Visual Studio 2008 is officially launched. To get started with the Service Factory: Modeling Edition , you should download the Visual Studio 2008 SDK 1.0 and the Guidance Automation Toolkit...
ADO.Net Data Services Feedback: DataContextServiceProvider Required for LINQ to SQL support After writing my previous posts about ADO.Net Data Services : ADO.Net Data Services Part 1 - Building a Simple Web Data Service ADO.Net Data Services Part 2 - Using Service Operations with WebGet ADO.Net Data Services Part 3 - Querying a Web Data Service and WebDataGen.exe I took a little time to write some logic that manipulates data on the client side and applies the changes back to the service. Starting...
ADO.Net Data Services Part 3 - Querying a Web Data Service and WebDataGen.exe This post is part of a series of posts about ADO.Net Data Services , a part of the ASP.Net 3.5 Extensions. In ADO.Net Data Services Part 1 - Building a Simple Web Data Service I had a step by step guide for building a simple web data service, that exposed resources as IQueryable properties of the DataContext . In ADO.Net Data Services Part 2 - Using Service Operations with WebGet I added some Service Operations to the Data...
LINQ to SQL Session @ Developer Academy 2 - Video is now Available On November 27th, 2007 I gave a session about LINQ to SQL at the Developer Academy 2 (The Israeli developers conference). You can download the presentation and video from My Presentations page. Although the presentation was given in Hebrew, you can benefit from the demos that were given in C#... Enjoy!
ADO.Net Data Services Part 2 - Using Service Operations with WebGet This post is part of a series of posts about ADO.Net Data Services , a part of the ASP.Net 3.5 Extensions. In ADO.Net Data Services Part 1 - Building a Simple Web Data Service I had a step by step guide for building a simple web data service, that exposed resources as IQueryable properties of the DataContext . I this post, I will add some Service Operations to the Data Service. 1. Open the Blog Data Service fService Operations rom...
How To: Create a RSS Syndication Service with WCF This post is a step by step guide for creating a Syndication Service with WCF. In this guide, I will create a WCF Service that returns my blogs posts as RSS 2.0 and ATOM items, that can be consumed with an RSS Reader. Creating the Service Contract 1. Create a new Class Library, and add references to the System.Runtime.Serialization.dll which contains the basic attributes used for serialization, System.ServiceModel.dll which contains the WCF components...
LINQ to SQL Concurrency - ChangeConflictException Row not found or changed If we create a small model of the Northwind database, and we try to modify one of the customers (lets take ALFKI for example): NorthwindDataContext db = new NorthwindDataContext (); Customer alfki = db.Customers.Single(c => c.CustomerID == "ALFKI" ); alfki.City = "London" ; db.SubmitChanges(); We will see that the update command that is created by the run time is: UPDATE Customers...
Copy Source As Html (CopySourceAsHtml) for Visual Studio 2008 RTM After the release of Visual Studio 2008 RTM, I really needed to blogs about technical stuff and needed Copy Source As Html ( CopySourceAsHtml ) with Visual Studio 2008 support. You can download this zip file , and extract it to your Visual Studio 2008 Addins folder. For vista is it C:\Users\<username>\Documents\Visual Studio 2008\Addins, and it should be somewhere under C:\Documents and settings If you're working with...
LINQ to SQL: Table<T>.Detach Method Does Not Exist Moving from Visual Studio 2008 Beta 2 to Visual Studio 2008 RTM , I read about LINQ to SQL Breaking Changes from Visual Studio 2008 Beta 2 to RTM . From the document: Table<T>.Attach changed to throw an exception if attached entity has not been detached The designed purpose of Table<T>.Attach method is to let you make a DataContext aware of objects that are transferred from other tiers, usually through serialization/deserialization...
LINQ to SQL Breaking Changes from Visual Studio 2008 Beta 2 to RTM With the release of Visual Studio 2008 , there are some changes moving LINQ to SQL projects from Visual Studio 2008 Beta 2 to Visual Studio 2008 RTM. There was already writen by Dinesh Kulkarni , the PM of LINQ to SQL in this post , but now they are officially published in a complete document. Download it here . Enjoy!
C# 3.0, LINQ and LINQ to SQL Hands on Labs for Visual Studio 2008 RTM After the release of Visual Studio 2008 RTM, the Visual Studio 2008 Samples page on MSDN was update accordingly. You can find few Hands on Labs there that will help you practice the new language features: C# 3.0 Language Enhancements Hands On Lab LINQ Hands On Labs LINQ to SQL Hands on Lab Additionally, you can Download Visual Studio 2008 and .NET Framework 3.5 Training Kit for other new technologies around. Enjoy!
Visual Studio 2008 RTM Live and Kicking! Yesterday, after the announcement that Visual Studio 2008 RTM Is Available for MSDN Subscribers , I downloaded and installed it, following Scott Guthrie's Installation Suggestions . The installation ran over the night so I can't really tell how long it took, but as of this morning - Visual Studio 2008 RTM Live and Kicking! Enjoy!
See what's in the Training Kit for Visual Studio 2008 and .Net Framework 3.5, and get the links for downloading....
Visual Studio 2008 RTM Is Available for MSDN Subscribers The well anticipated release of Visual Studio 2008 RTM is finally available for download for MSDN Subscribers. If you're an MSDN Subscriber, go to http://msdn2.microsoft.com/subscriptions and start download Visual Studio 2008 RTM . Enjoy!
More Posts
Next page »