Click here to Skip to main content
15,887,135 members
Articles / Web Development / ASP.NET

Signum Framework Principles

Rate me:
Please Sign up or sign in to vote.
4.74/5 (27 votes)
25 Jul 2011CPOL18 min read 99K   1.1K   86  
Explains the philosophy behind Signum Framework, an ORM with a full LINQ Provider that encourages an entities-first approach.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Collections;
using Signum.Utilities;
using Signum.Utilities.Reflection;
using System.Reflection;

namespace Signum.Engine.Linq
{
    [DebuggerDisplay("Key =  {Key}  Count = {Count}")]
    [DebuggerTypeProxy(typeof(Proxy))]
    internal class Grouping<K, T> : List<T>, IGrouping<K, T>
    {
        K key;
        private Grouping() { }

        public static IGrouping<K, T> New(K key, IEnumerable<T> values)
        {
            var result = new Grouping<K, T> { key = key };
            result.AddRange(values);
            return result;
        }

        public K Key
        {
            get { return this.key; }
        }
    }
    
    internal class Proxy
    {
        public object Key;
        public ArrayList List;

        public Proxy(IList bla)
        {
            List = new ArrayList(bla);
            PropertyInfo pi = bla.GetType().GetProperty("Key");
            Key = pi.GetValue(bla, null);
        }
    }
}

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