This is a place where i share about Technology, Management and Spirituality.
Back again
Get link
Facebook
X
Pinterest
Email
Other Apps
Its been a while i have blogged, as usual the reasons been busy :). I feel i should take some time for blogging. Hopefully i will get to be more regular and start sharing on whatever i learn.
While adding a controller in ASP.NET MVC 3 application, you might get a error “Unable to retrieve the metadata for …”. This error is due to the incorrect connection string name or the connection string in the web.config. I had encountered the same error and the issue was that the name of my DBContext was different from that of the web.config connection string name. When I made it same it was able to create the controller.
This article talks about building a simple application using ASP.NET MVC and MongoDB. From my earlier blog post, the installation steps for Mongo DB were explained. For building application using MongoDB and .NET, we need the 10gen C# Driver. This can be downloaded from http://github.com/mongodb/mongo-csharp-driver/downloads Let’s began creating a simple ASP.NET MVC 3 application. We will be creating a simple application which will save the contact details and view the same. The contact model is as show below public class Contact { [ Required ] [ Display (Name = "Contact ID" )] public int ContactID { get ; set ; } [ Required ] [ Display (Name = "Name" )] ...
Microsoft released VS 2013 and .NET 4.5.1 . Some of the key highlights are as below Innovative Features for Greater Developer Productivity Support for Windows 8.1 App Development Web Development Advancements Create Modern Business Apps for Office 365 Debugging and optimization Improvements Expanded ALM Capabilities To read about them , please check out http://www.microsoft.com/visualstudio/eng/visual-studio-2013#story-2013
Comments