简体   繁体   中英

Select Multiple elements in a row using Linq

My Code is as follows

var users = MyTable.AsEnumerable()
                      .Select(x => new { x.Field<string>("Col1"),x.Field<string>  
                       ("Col2")}).ToList();

On compiling I get

Invalid anonymous type member declarator. Anonymous type members must be declared with a member assignment, simple name or member access.

You need to give a name to each of the fields in the anonymous type

var users = MyTable.AsEnumerable()
  .Select(x => 
     new { Col1 = x.Field<string>("Col1"), Col2 = x.Field<string>("Col2")})
  .ToList();

The only time the name of an anonymous type field can be omitted is when the expression itself is a simple name that the compiler can use. For example if the expression is a field or property then the name can be omitted. In this case the expression is a generic method call and has no name the compiler will use

Try this:

var users = MyTable.AsEnumerable()
                      .Select(x => new
                      {
                        Col1 = x.Field<string>("Col1"),
                        Col2 = x.Field<string>("Col2")})
                        .ToList();

You can use this

var users = MyTable.AsEnumerable()
                      .Select(x => new
                      {
                        Col1 = x.Field<string>("Col1"),
                        Col2 = x.Field<string>("Col2")})
                        .ToList();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM