温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C#LINQ查询怎么写

发布时间:2024-11-22 20:49:45 来源:亿速云 阅读:78 作者:小樊 栏目:编程语言

在C#中,LINQ(Language Integrated Query)是一种强大的查询工具,它允许你以声明式的方式编写查询代码。LINQ可以用于查询数组、集合、列表等数据源。以下是一些常见的LINQ查询示例:

  1. 查询整数数组:
using System;
using System.Linq;

class Program
{
    static void Main()
    {
        int[] numbers = { 1, 2, 3, 4, 5 };

        // 查询大于3的数
        var result = from number in numbers
                     where number > 3
                     select number;

        Console.WriteLine("大于3的数:");
        foreach (var item in result)
        {
            Console.WriteLine(item);
        }
    }
}
  1. 查询字符串列表:
using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        List<string> words = new List<string> { "apple", "banana", "cherry", "orange" };

        // 查询长度大于5的单词
        var result = from word in words
                     where word.Length > 5
                     select word;

        Console.WriteLine("长度大于5的单词:");
        foreach (var item in result)
        {
            Console.WriteLine(item);
        }
    }
}
  1. 查询嵌套集合:
using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        List<Person> people = new List<Person>
        {
            new Person { Name = "Alice", Age = 30 },
            new Person { Name = "Bob", Age = 25 },
            new Person { Name = "Charlie", Age = 35 }
        };

        // 查询年龄大于等于30岁的人
        var result = from person in people
                     where person.Age >= 30
                     select person;

        Console.WriteLine("年龄大于等于30岁的人:");
        foreach (var item in result)
        {
            Console.WriteLine($"{item.Name}, {item.Age}");
        }
    }
}

class Person
{
    public string Name { get; set; }
    public int Age { get; set; }
}

这些示例展示了如何使用LINQ查询数组、集合和嵌套集合。LINQ提供了丰富的查询操作符,如whereselectorderby等,以满足各种查询需求。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI