Posts

Showing posts from October, 2009

Intellisense Problem on VS 2010 Beta 2

I happened to see this on scott gu’s twitter feed , If your intellisense don’t work on VS2010 Beta 2 for Javascript/HTML follow the guidelines from http://blogs.msdn.com/webdevtools/archive/2009/10/23/visual-studio-2010-beta-2-intellisense-issue-in-javascript-html.aspx   Cheers!!!

VS 2010 and .NET 4.0 Beta 2

Just saw this on Scott Gu’s Blog that VS 2010 Beta 2 is available for MSDN Subscribers . Check out http://weblogs.asp.net/scottgu/archive/2009/10/19/vs-2010-and-net-4-0-beta-2.aspx   Cheers!!!

NetMeeting in Vista

I was wondering where is NetMeeting option in Vista. Then I found that it was replaced by Windows Meeting Space. But i wanted to get this installed , so I searched on google and found this interesting blog http://www.ehow.com/how_5156786_use-netmeeting-vista.html . You can download the NetMeeting from this place http://www.microsoft.com/DownLoads/details.aspx?displaylang=en&FamilyID=26c9da7c-f778-4422-a6f4-efb8abba021e   Hope this helps some vista users..   Cheers!!!

Tips while working with Entity Framework

Image
I started to work with ADO.NET Entity Framework last week evaluating it from my future projects. While working on it I came up with couple of hurdles but all these were short comings in the version 1.0. It’s expected that it is all going to be fixed by 4.0 (.NET 4.0 Version release). Some of the learning’s  I wanted to illustrate are as follows   1. Use of Stored Procedures                 When we use Stored Procedures and want to map this to any entity. Assume that we have created a SP for inserting data into a table. After we do a function import of the SP. When we do a function mapping of SP there are three options as shown below       But we may have only the Insert Stored Procedure and there is no need for Update and Delete. In this case we cannot use this function mapping because as per Ver 1.0, all the three is a must. The workaround for this is to create a Connection and Call the SP using the EntityConnection and EntityCommand  . To build the Connection Strin