Linq Select return a few fields
Posted: 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 }
It returns my project class fully loaded. Am I doing something wrong?
Any help is appreciated.
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);
Any help is appreciated.