Click here to Skip to main content
15,881,852 members
Articles / Desktop Programming / WPF

Automatic WPF Mapping to a Database (Access 07 Edition)

Rate me:
Please Sign up or sign in to vote.
4.89/5 (8 votes)
10 Mar 2010CPOL4 min read 43.5K   1.7K   34   5
Automatizing creation of a database, tables, SUID actions, and easy WPF to class mapping.

Abstract

The idea is to create an automatic DAL and an automatic mapping that creates the storage, tables, SUID (Select, Update ...), and WPF mapping from/to the controls to an instance of the classes.

Prerequisites

  • Visual Studio 2008 SP1
  • WPF Toolkit Feb. 2010 release, just for the DatePicker control
  • MS Access 2007, but not necessary

Introduction

When you want to create an application to storage any kind of information, you sketch the information you want to store, defining a class with its subclasses.

Let's suppose now that you want to create a DAL (Data Access Layer) that can be adapted with multiple data sources (SQL Server, Access, MySQL...). So you have to:

  • Create a database.
  • Create the tables.
  • Create the standard queries.
  • Create methods to pass values from the classes to queries.
  • Create a mapping from the class values to WPF controls.

Why not try to create all these steps automatically? Hard work, isn't it?

I have created all these steps automatically, and you only have to worry about creating the classes and a list with the mappings. Let's take a look at how it works.

main.jpg

  • You create a WPF Form
  • Create an instance and configure a mapping class
  • The engine converts the Form to the classes
  • Create the Business Logic classes for your application
  • The instanced classes are managed by the DAL
  • The engine manages the DAL

The Classes

To begin, I created a basic class Address and the main class User with an Address inside:

C#
public enum Countries
{
    None,Spain,UK,USA
}

[Description("Addresses")]
public class Address : SQLBase
{
    [Description("Street")]
    public String Street;

    [Description("Number")]
    public Int32 Number;

    public Address() { Street = String.Empty; Number = 0; }

}

[Description("Users")]
public class User : SQLBase
{
    [Description("Name")]
    public String Name;

    [Description("Age")]
    public Int32? Age;

    [Description("Birth")]
    public DateTime Birth;

    [Description("Country")]
    public Countries Country;

    [Description("Address")]
    public Address Address;

    [Description("Active")]
    public Boolean Active;

    [Description("Salary")]
    public Single Salary;

    [Description("Photo")]
    public Bitmap Photo;

    public User()
    {
        Name = String.Empty; Birth = new DateTime(1900, 1, 1); Age = -1;
        Country = Countries.None; Photo = new Bitmap(1, 1); Address = new Address();
    }
}

The important steps in the class creation are (here is the magic):

  1. The class inherits from SQLBase (to always add an ID).
  2. The class needs an empty constructor.
  3. In the constructor, initialize the fields.
  4. Add the description that will be used to create tables and field tables.

As you can see, at the moment, I have added many types and nullable values.

First Part: Classes and Database

How to Work

Create a form or a class, then add inside an instance of the ACCESS class, with settings or strings for file and path:

C#
access = new ACCESS(Properties.Settings.Default.FileName, 
                    Properties.Settings.Default.Path);

Creating and Deleting the Database

These steps are easy, I added settings to the form:

C#
access.DeleteDB();
access.CreateDB();

Creating Table Definitions

The methods are generic, so if you define the classes well, you will automatically have the tables. In our case, the class to work is User, so:

C#
access.CreateDefinition<User>();

Adding Items

Now if you instantiate classes, you can easily insert into the database:

C#
User Victoria = new User()
{
    Name = "Victoria",
    Age = 20,
    Country = Countries.Spain,
    Birth = new DateTime(1980, 1, 1),
    Active = true,
    Salary = 1200.24F,
    Address = new Address() { Number = 24, Street = "6th Avenue" }
};
access.Add(Victoria);

//Add a List of Users
List<User> users = new List<User>()
    {
        new User() { Name = "John",  Age = 32,   Country = Countries.UK, 
                     Birth=new DateTime(1965,2,3), Active = true, Salary = 900.31F,
                     Address = new Address() { Number = 5, Street = "Brighton Ave."}
        },
        new User() { Name = "Malcom",   Age = null, Country = Countries.UK,
                     Birth=new DateTime(1979,4,5), Active = false, Salary = 1000.32F,
                     Address = new Address() { Number = 7, Street = "London Ave."}
        },
        new User() { Name = "Victoria", Age = 19, Country = Countries.Spain,
                     Birth=new DateTime(1954,6,7), Active = true, Salary = 1200.2F,
                     Address = new Address() { Number = 24, Street = "Sea Road" }
        }
    };
access.Add(users);

As you can see, you do not have to worry about the IDs, the system manages them.

Retrieving Items

At the moment, I have created:

  • Retrieve all
  • C#
    List<User> allusers = access.SelectAll<User>();
    
  • Retrieve filtered
  • C#
    List<User>  someusers = access.SelectWhere<User> ("Name <>" ,"Victoria");

Updating and Deleting Items

If you have a database retrieved instance, you can update, or delete it:

C#
Victoria = access.SelectWhere<User>("Name =", "Victoria").First();
Victoria.Age = 21; Victoria.Country = Countries.UK; Victoria.Address.Number = 10;
Victoria.Photo = Bitmap.FromFile(Environment.CurrentDirectory + 
                                 @"\images\example.png", true) as Bitmap;
access.Update(Victoria);
access.Delete(Victoria);

Now it has no ID, so you can add it again:

C#
access.Add(Victoria);

You can update by a field:

C#
access.UpdateBy(Victoria,Victoria.Name);

The same is implemented for a list of items.

Second Part: WPF Controls and classes

How to Work

Now you have to create a list with the mapping. Let's suppose a form like:

app.jpg

We can easily write the following:

C#
mapping = new List<ControlBind>();
mapping.CustomAdd(C1_Name,TextBox.TextProperty,"Name");
mapping.CustomAdd(C2_Age,TextBox.TextProperty,"Age");
mapping.CustomAdd(C3_Birth,DatePicker.SelectedDateProperty,"Birth");
mapping.CustomAdd(C4_Country,ComboBox.SelectedItemProperty,"Country");
mapping.CustomAdd(C5_Status,CheckBox.IsCheckedProperty,"Active");
mapping.CustomAdd(C6_Salary,TextBox.TextProperty,"Salary");
mapping.CustomAdd(C7_Photo,System.Windows.Controls.Image.SourceProperty,"Photo");
mapping.CustomAdd(C8_Street,TextBox.TextProperty,"Address.Street");
mapping.CustomAdd(C9_Number,TextBox.TextProperty,"Address.Number");
mapping.CustomAdd(C10_ID,TextBox.TextProperty,"ID");

For enums, I bind them as:

C#
C4_Country.ItemsSource = Enum.GetValues(typeof(WPFBusiness.Countries));
C4_Country.SelectedIndex = 0;

Managing Items

Now we can use the first part with the following methods:

C#
mapping.GetfromMapping<t>()
mapping.SetfromMapping<t>(T item);

Example of use:

C#
private void B_SAdd_Click(object sender, RoutedEventArgs e)
{
  access.Add(mapping.GetfromMapping<User>());
}

And to retrieve the information, for example, getting all:

C#
Int32 idx = 0;
List<Users><user> allusers = null;
private void B_NAll_Click(object sender, RoutedEventArgs e)
{
     allusers = access.SelectAll<user>();
     mapping.SetfromMapping(allusers[idx]);
}

It will fill the controls automatically. To navigate, for instance:

C#
private void B_NNext_Click(object sender, RoutedEventArgs e)
{
    if (allusers != null)
    {
        if (++idx > allusers.Count - 1)
            idx = 0;
        mapping.SetfromMapping(allusers[idx]);
    }
}

private void B_NPrevious_Click(object sender, RoutedEventArgs e)
{
    if (allusers != null)
    {
        if (--idx ;lt& 0)
            idx = allusers.Count-1;
        mapping.SetfromMapping(allusers[idx]);
    }
}

Third Part: Child Classes

How to Work

Let's suppose we want to add many to single classes, for instance, a list of tasks that will be appended to a user.

Defining the Class

Instead of inheriting from SQLBase, it inherits from SQLChild:

C#
[Description("Tasks")]
public class Task : SQLChild
{
    [Description("Description")]
    public String Description;

    public Task() { Description = String.Empty; ID = -1; ParentID = -1; }
}

As you can see, ParentID will be the relationship.

Defining the Mapping

To add records of this class in the database, we define a mapping similar to the user mapping:

C#
taskmapping = new List<controlbind>();
taskmapping.CustomAdd(C11_Task, TextBox.TextProperty, "Description");

To simplify it has only description

Adding Child Objects to the Parent

To add objects to one of the parents:

C#
private void B_TaskAdd_Click(object sender, RoutedEventArgs e)
{
    User actual = mapping.GetfromMapping<user>();
    if (actual.ID > 0)
    {
        Task task = taskmapping.GetfromMapping<task>();
        access.AddChild<Task,User>(task, actual);
    }
   ShowTasks(actual);
}

As you can see, we assign the task to the actual user.

Retrieving Child Objects of the Parent

To retrieve the objects to one of the parents, we simply specify who the parent is.

C#
private void ShowTasks(User user)
{
    TaskList.Items.Clear();
    tasks = access.SelectChilds<Task,User>(user);
    tasks.ForEach(t => TaskList.Items.Add(t.Description));
}

And that's all. Now you can define many to single objects.

Improvements

  • Be able to store images bigger than 10 KB
  • Be able to make n-level nesting in WPF (the DAL part is done)
  • DAO methods: Better conversion of Recordset to DataTable

History

  • 1.0: First release, March 2010.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Expediteapps
Spain Spain
I'm Electronic Engineer, I did my end degree project at Astrophysical Institute and Tech Institute. I'm HP Procurve AIS and ASE ,Microsoft 3.5 MCTS
I live in Canary Islands ,developing customized solutions

Deeply involved in Xamarin Forms LOB (including Azure Cloud with offline support, custom controls, dependencies) projects, WP8.1 & W10 projects, WPF modern styled projects. Portable libraries like portablePDF, portableOneDrive, portableReports and portablePrinting (using Google Printing API).


Web and apps showcase at:
Expediteapps


Take a look to my blog
Blog

Comments and Discussions

 
GeneralA point before you go any further. Pin
Pete O'Hanlon9-Mar-10 1:44
mvePete O'Hanlon9-Mar-10 1:44 
GeneralRe: A point before you go any further. Pin
Juan Pablo G.C.9-Mar-10 4:10
Juan Pablo G.C.9-Mar-10 4:10 
GeneralRe: A point before you go any further. Pin
Pete O'Hanlon9-Mar-10 4:38
mvePete O'Hanlon9-Mar-10 4:38 
GeneralInteresting Pin
Petr Pechovic8-Mar-10 11:09
professionalPetr Pechovic8-Mar-10 11:09 
GeneralRe: Interesting Pin
Juan Pablo G.C.9-Mar-10 0:55
Juan Pablo G.C.9-Mar-10 0:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.