Telerik blogs

Over the next few blogs we will look at working with LightSwitch and OpenAccess, but first i would like to lay a little ground work. :)

What is LightSwitch?

LightSwitch is a new Microsoft tool enabling developers, and power users, to create multi-tier applications, quickly and easily.  Those of you familiar with Microsoft Access will find it gives you even more power to create application that are easy to maintain, and easy to distribute. Since the applications made with LightSwitch are Silverlight based, they are easily deployed in browser (3-tier), out of browser(3-tier), or directly to the desktop(2-tier). 

What Do I Need?

To get started you will need to go download the LightSwitch Beta, as well a copy of OpenAccess. The LightSwitch install will add a new project template to the “New Project” dialog in Visual Studio.  

How can OpenAccess Work With It?

LightSwitch allows developers to connect to a variety of data sources.  In the beta, developers can create a new database using the LightSwitch table wizards, connect to an existing database, SharePoint lists, or load data exposed through RIA Services.  The latter option is where OpenAccess comes into play.  Using an OpenAccess Domain Service, we can expose an OpenAccess Domain Model to LightSwitch. 

Lets Get Started!

For this example, I will be building a sample project tracker to track clients, projects, employees, and timesheets.  We have many resources available (video, blog, documentation) which show how to create a model using the Visual Designer; so I won’t be focusing on that aspect in this blog.

First thing we need to do is create a solution, and add a class library to it.  The class library will hold our model, so add a new “OpenAccess Domain Model”.  I will build this using forward mapping, so I selected “Empty Domain Model” from the OpenAccess dialog:

SNAGHTML42fa0b7

My Solution now looks like this:

image

Next create a domain model.   Here is the model I will be using for the upcoming blogs:

image

Feel free to ask any questions, if you run into issues recreating it.  :)

In the next blog we will look at setting up an OpenAccess Domain Service that can be used by LightSwitch!

Part 1

Part 2

Part 3


Comments

Comments are disabled in preview mode.