溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Projection怎么在C#中使用

發(fā)布時間:2021-01-25 15:36:55 來源:億速云 閱讀:157 作者:Leah 欄目:開發(fā)技術(shù)

今天就跟大家聊聊有關(guān)Projection怎么在C#中使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

投影(Projection) 是一種可以將查詢結(jié)果進行 塑性 的一種操作,你可以使用 投影 將一個 object 轉(zhuǎn)成僅包含你需要屬性的新對象,這篇文章中,我們就一起看看如何使用 投影 功能。

C# 中的投影

LINQ 集成查詢中有兩個支持投影的擴展方法,分別為: SelectSelectMany 操作,可以用它們投影單個或者多個屬性,或者投影查詢的結(jié)果集到一個新的匿名類型中,還可以在投影的過程中執(zhí)行: 再計算,過濾,或者其他一些必要的操作。

Select 投影

為了演示目的,我先構(gòu)造一個 Author 類,代碼如下:

 public class Author
 {
  public int Id { get; set; }
  public string FirstName { get; set; }
  public string LastName { get; set; }
  public string Address { get; set; }
  public Author(int id, string firstName,
  string lastName, string address)
  {
   this.Id = id;
   this.FirstName = firstName;
   this.LastName = lastName;
   this.Address = address;
  }
 }

下面的代碼展示了如何使用 Select 操作去查詢數(shù)據(jù)。

 static void Main(string[] args)
  {
   var authors = new List<Author>
       {
        new Author(1, "Joydip","Kanjilal", "Hyderabad, INDIA"),
        new Author(2, "Anand","Naraswamy", "Cochin, INDIA"),
        new Author(3, "Steve","Smith", "Ohio, USA"),
        new Author(4, "Uday","Denduluri", "London, UK")
       };

   foreach (var name in authors.Select(e => e.FirstName))
   {
    Console.WriteLine(name);
   }

   Console.ReadLine();
  }

Projection怎么在C#中使用

從上圖中可以看到,所有作者的名字都展示到控制臺了。

投影到 匿名類型

你可以從一個數(shù)據(jù)源中投影多個屬性,也可以將查詢結(jié)果投影到匿名類型中,下面的代碼片段展示了如何將多個屬性投影到 匿名類型 中。

static void Main(string[] args)
  {
   var authors = new List<Author>
       {
        new Author(1, "Joydip","Kanjilal", "Hyderabad, INDIA"),
        new Author(2, "Anand","Naraswamy", "Cochin, INDIA"),
        new Author(3, "Steve","Smith", "Ohio, USA"),
        new Author(4, "Uday","Denduluri", "London, UK")
       };

   var data = authors.Select(e => new { e.FirstName, e.LastName });

   foreach (var item in data)
   {
    Console.WriteLine($"{item.FirstName}, {item.LastName}");
   }

   Console.ReadLine();
  }

Projection怎么在C#中使用

使用 SelectMany 投影

可以使用 SelectMany 從實現(xiàn) IEnumerable<T> 接口的集合中查詢數(shù)據(jù),還有一個,如果你想從多個集合中查詢數(shù)據(jù),可以使用 SelectMany 將多個集合扁平化到一個 集合,為了演示,接下來在 Author 類中新增一個 Subject 屬性,這個集合中包含了當前作者出版書籍的列表,如下代碼所示:

public class Author
 {
  public int Id { get; set; }
  public string FirstName { get; set; }
  public string LastName { get; set; }
  public string Address { get; set; }
  public List<string> Subjects { get; set; }
  public Author(int id, string firstName, string lastName,

  string address, List<string> subjects)
  {
   this.Id = id;
   this.FirstName = firstName;
   this.LastName = lastName;
   this.Address = address;
   this.Subjects = subjects;
  }
 }

接下來可以用下面的代碼獲取所有作者出版的書的合集。

static void Main(string[] args)
  {
   var authors = new List<Author>
       {
        new Author(1, "Joydip","Kanjilal", "Hyderabad, INDIA",new List<string>{"C#", "F#"} ),
        new Author(2, "Anand","Naraswamy", "Cochin, INDIA", new List<string>{"C#", "VB.NET"}),
        new Author(3, "Steve","Smith", "Ohio, USA", new List<string>{"C#", "C++"}),
        new Author(4, "Uday","Denduluri", "London, UK", new List<string>{"C#", "VB.NET"}),
        new Author(5, "Jane","Barlow", "London, UK", new List<string>{"C#", "C++"})
       };

   var data = authors.SelectMany(a => a.Subjects).Distinct();

   foreach (var subject in data)
   {
    Console.WriteLine(subject);
   }

   Console.ReadLine();
  }

Projection怎么在C#中使用

使用 Where 過濾結(jié)果集

可以用 Where 操作符去過濾 SelectMany 產(chǎn)生的結(jié)果集,下面的代碼片段展示了滿足以 J 開頭的名字 并且地址包含 UK 的所有作者,并且展示這些作者的 FirstName 和 Subject 的合集,代碼如下:

var data = authors.Where(a => a.Address.IndexOf("UK") >= 0)
        .SelectMany(a => a.Subjects, (a, Subject) => new { a.FirstName, Subject })
        .Where(n => n.FirstName.StartsWith("J"));
   foreach (var author in data)
   {
    Console.WriteLine(author);
   }

當執(zhí)行完上面的代碼后,可以看到如下的截圖:

Projection怎么在C#中使用

的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持億速云!

看完上述內(nèi)容,你們對Projection怎么在C#中使用有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI