Click here to Skip to main content
15,885,278 members
Articles / Web Development / HTML

Signum Framework Tutorials Part 3 - Southwind Load

Rate me:
Please Sign up or sign in to vote.
4.62/5 (7 votes)
21 Nov 2012CPOL23 min read 24.4K   319   10  
In this part we'll write the loading application to move data from Northwind to Southwind.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Signum.Utilities;
using Signum.Utilities.ExpressionTrees;
using Signum.Utilities.Reflection;
using System.Data;
using System.Reflection;
using System.Diagnostics;
using Signum.Entities.Reflection;
using Signum.Utilities.DataStructures;
using System.Collections;
using System.Linq.Expressions;
using Signum.Entities.Properties;

namespace Signum.Entities.DynamicQuery
{
    [Serializable]
    public class QueryDescription
    {
        public object QueryName { get; set; }
        public List<ColumnDescription> Columns { get; set; }
    }

    [Serializable]
    public class ColumnDescription
    {
        public const string Entity = "Entity";

        public string Name { get; internal set; }
        public Type Type { get; internal set; }

        public string Unit { get; internal set; }
        public string Format { get; internal set; }

        public Implementations Implementations { get; internal set; }

        public PropertyRoute[] PropertyRoutes { get; set; }

        public string DisplayName { get; set; }

        public ColumnDescription(string name, Type type)
        {
            this.Name = name;
            this.Type = type;
        }

        public bool IsEntity
        {
            get { return Name == Entity;  }
        }

        public override string ToString()
        {
            return DisplayName;
        }
    }    
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer (Senior) Signum Software
Spain Spain
I'm Computer Scientist, one of the founders of Signum Software, and the lead developer behind Signum Framework.

www.signumframework.com

I love programming in C#, Linq, Compilers, Algorithms, Functional Programming, Computer Graphics, Maths...

Comments and Discussions