Resources for learning ADO.NET Entity Framework

I’m planning to learn ADO.NET Entity Framework. So thought of sharing some nice links to learn Entity Framework . Here’s are some of the interesting one’s Blogs and Documentation MSDN ADO.NET Entity Framework Site MSDN Entity Framework Documentation Entity Framework Tips and Tricks LINQ to SQL vs. Entity Framework Checking out one of the new [...]

  • Share/Bookmark
Read more

No Support for Windows Mobile 6.X Development in Visual Studio 2010 ??…

Recently , i was trying to develop a smart device application in Visual Studio 2010 and found that the template to create them were missing in Visual Studio 2010 .

Then with lots of search in Google , i found an interesting article in MSDN that states the following .

  • Share/Bookmark
Read more

The 2009-2010 selection process for MSPs in India

Source : http://student-partners.com

Selection Process

The selection process for Microsoft Student Partners in India is now open. Register immediately to avoid the last-minute rush and possibly missing out on important announcements.

  • Share/Bookmark
Read more

Windows Mobile Developer Contest

Do you have a cool idea for a Mobile Application?

Here is a lifetime opportunity for you to showcase your development skills to the rest of the world and in the process, become a Millionaire. Pick any of the monthly themes and create a Windows Mobile Application which best showcases the versatility of the Windows Mobile platform. By doing it, you can help yourself win fabulous Cash Prizes, Phones, Certificates, Publicity

  • Share/Bookmark
Read more

Yield keyword in C#

I got caught with this keyword recently.Very much unknown to me ,but when explored was able to know its real advantages.

It is used to iterate through objects ,create a enumerator returned by a method.

public static IEnumerable Test(int num)
{
for (int i = 0; i < num; i++)
{
yield return i;
}
yield break;
}

  • Share/Bookmark
Read more