Linq Select return a few fields

Discussion of open issues, suggestions and bugs regarding EntityDAC
Post Reply
rodrigobarbosa
Posts: 7
Joined: Fri 11 Mar 2016 13:25
Location: Curitiba, Brazil

Linq Select return a few fields

Post by rodrigobarbosa » Wed 16 Mar 2016 17:54

Hi,
I´ve been trying to performe a query using linq and can´t maky it to return class with only few fields.

my Table looks like
Project {Id: Integer, Name:String, Description:String, Extra:String, Other:String }

Code: Select all

Query := Linq.From(Context['Project'])
                     .OrderBy(Context['Project']['Name'])
                     .Select([Context['Project']['Id'], Context['Project']['Name']]);
List := Context.GetEntities<Project>(Query);
It returns my project class fully loaded. Am I doing something wrong?
Any help is appreciated.

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: Linq Select return a few fields

Post by AlexP » Thu 17 Mar 2016 05:49

hello,

The problem is not reproduced using the latest version and demo sample. Please send your model and a sample to support*devart*com .

Post Reply