Answers for "LINQ"

C#
1

linq in c#

// Data source
string[] names = {"Bill", "Steve", "James", "Mohan" };

// LINQ Query 
var myLinqQuery = from name in names
                where name.Contains('a')
                select name;
    
// Query execution
foreach(var name in myLinqQuery)
    Console.Write(name + " ");
Posted by: Guest on May-26-2020
0

linq in c#

class LINQQueryExpressions
{
    static void Main()
    {

        // Specify the data source.
        int[] scores = new int[] { 97, 92, 81, 60 };

        // Define the query expression.
        IEnumerable<int> scoreQuery =
            from score in scores
            where score > 80
            select score;

        // Execute the query.
        foreach (int i in scoreQuery)
        {
            Console.Write(i + " ");
        }
    }
}
// Output: 97 92 81
Posted by: Guest on May-22-2020
0

LINQ

A class must implement IEnumerable or IQueryable interface in order to provide querying facility using LINQ.
Posted by: Guest on April-22-2021
0

LINQ

The full form of LINQ is Language-Integrated Query.
Posted by: Guest on April-22-2021

C# Answers by Framework

Browse Popular Code Answers by Language