Showing posts with label development. Show all posts
Showing posts with label development. Show all posts

Monday, 3 June 2013

ConvallisCMS and ASP.Net MVC 4

In previous posts I've talked about how we slowly evolve our software by taking advantage of advances in the platform that we write our code in (the .Net Framework). Last time I discussed the Entity Framework and why I decided to move us over to it's most recent release. This time I thought I'd write a little about ASP.Net MVC.

This is a technology that I doubt hardly anyone who isn't a software developer (and probably a web developer at that) will have heard of. I'm sure many of you will know that ASP.Net is the name Microsoft gave the web development platform which is part of the .Net Framework, and the MVC framework is a subset of that.


Author: Richard Isaac

Tuesday, 23 April 2013

Entity Framework 5


Last time, I wrote that I'd decided it was time to update our software and make use of technologies that have been more recently released than those we'd been working with over the past few years. One of those technologies is the Entity Framework.

When we first started work on ConvallisCRM the Entity Framework was still in development and hadn't been released, but what had been released was a tool called Linq to SQL. Both of these technologies are examples of what are known as object relational mapping tools, or ORM for short.

In our daily lives we make use of various objects on a daily basis, from the telephone to communicate with others, to our beds in which we sleep. In a similar fashion many programming languages allow us to define and create 'objects' that represent a function or data within an application. An ORM is a tool that performs a query on a database and maps those results into a data object within the application that can then be further manipulated, oft times that simply means that it is displayed.

Read more.....

Author: Richard Isaac