Click here to Skip to main content
15,881,424 members
Articles / Security

N - tier project with WCF OData service, Entity Framework, MVC3.0, Ninject DI, jSOn.net and Automapper

Rate me:
Please Sign up or sign in to vote.
4.62/5 (5 votes)
10 Dec 2012CPOL3 min read 39.4K   1.9K   41  
N-Tier application with WCF Odata service and Entity Framework.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using eShopping.Entities.Entities;

namespace eShopping.ViewModels
{
    public class CustomersViewModel
    {
        public IQueryable<Customer> Customers;
        public PagingInfo PagingInfo { get; set; }
    }
}

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) Nagarro Softwares
India India
I am vijay tanwar and i am a software engineer with passion of programming. I love to programming in c#, I love to warp up more and more things in few lines of code. my favirote languages are c# and javascript and both are fully object oriended. I always like to become the .net Architect.

Comments and Discussions