Oracle Releases Entity Framework Provider

Oracle recently announced that they’ve released a Beta version of their provider which supports Entity Framework. Features include LINQ to Entities, Model First development, and support for the Entity Data Model Wizard. We can download it from here http://www.oracle.com/technetwork/topics/dotnet/downloads/oracleefbeta-302521.html. And here is the setup instructions http://www.oracle.com/technetwork/topics/dotnet/downloads/odacefbetainstallinstructions-302527.html Thanks, Naga Harish.
More

Windows Phone 7 First Update

Wow!, Windows Phone 7 First Update is now available. This isn’t the update we are waiting for. It is a relatively small one. This update didn't have Copy and Paste feature. I sure about this update, they (Windows Phone 7 team) just want to ensure that the update process keeps working smoothly for us. So, the next update is going to be BIG one. Awaiting.....! :) Get more details and how to update you phone to new version, please check this URL http://windowsteamblog.com/windows_phone/b/windo...
More

Send mail from Windows Phone 7

In this post I am going to show how to send mail from Windows phone 7(wp7). For send mail we need to use EmailComposeTask and EmailAddressChooserTask (for selecting email id in phone). Then highlighted code is here for sending mail. Code:- Microsoft.Phone.Tasks.EmailComposeTask emailComposeTask = new Microsoft.Phone.Tasks.EmailComposeTask(); emailComposeTask.To = "tomail@localhost.com"; emailComposeTask.Cc = "ccmail@localhost.com"; emailComposeTask.Subject ="Your Subject here"; emailComposeTa...
More