Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9204213
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T23:39:26+00:00 2026-06-17T23:39:26+00:00

Automapper has a very nice extensions for getting projections. In BL of our application

  • 0

Automapper has a very nice extensions for getting projections.
In BL of our application we can just define methods like this:

IEnumerable<TEntityProjection> GetProjections()
{
    return _context.EntitiesSet.Project().To<TEntityProjection>();
}

This helps BL to stay quite simple. We do not need many different methods for each projection variant.
But… WCF service does not support open generics.
So I’m looking for the solution which allows service clients to get only desired properties of the entity.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T23:39:28+00:00Added an answer on June 17, 2026 at 11:39 pm

    Possible solution is Linq over WCF (based on BLToolkit).
    Under the hood, the linq query parse to SqlQuery (SQL AST), serialize and send to WCF LINQService. The service creates a sql query for DB (SQl Server, Oracle, MySql, etc), executes it and returns data. Anonymous types are supported.

    Query sample:

    var client = new DataModel();
    
    var q = from p in client.Person
            select new   
    {
          p.PersonID,
          p.FirstName,
          p.MiddleName,
          p.LastName,
          p.Gender
    };
    
    foreach (var p in q)
      Console.WriteLine(p);
    

    More info: http://bltoolkit.net/Doc.LinqDataContext.ashx

    Sample: https://github.com/igor-tkachev/bltoolkit/blob/master/Demo/Linq/OverWCF/Program.cs

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

UPDATE: this stuff has evolved into a nice project, see it at http://valueinjecter.codeplex.com check
I have been using Automapper in our projects and just recently ran into an
Can Automapper map values from a NameValueCollection onto an object, where target.Foo receives the
We want to use Automapper in commercial application (.NET 3.5). To get the clearance
How can I use automapper to update the properties values of another object without
Any idea how I can tell AutoMapper to resolve a TypeConverter constructor argument using
iwant to map collection of model to viewmodel with automapper this is my code
I have an AutoMapper issue that has been driving me crazy for way too
I have recently started using automapper and it has work fine for me so
I've just taken on a new Asp.Net MVC application and after opening it up

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.