How to use Linq First Operator with condition
LinqFirstOperatorWithCondition.aspx
<%@ Page Language="C#" AutoEventWireup="true" %>
<%@ Import Namespace="System.Linq" %>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
string[] fruits = { "Litchi chevelu", "Mangostino", "Actinidia", "Albicocco", "Breadnut", "Citrus maxima" };
string firstItem = (from f in fruits
select f).First(f=>f.StartsWith("A"));
Label1.Text = "Fruits List: <br />";
foreach (string names in fruits)
{
Label1.Text += names.ToString() + "<br />";
}
Label2.Text = "After Calling First Operator With Condition [StartsWith('A')]: <br />" + firstItem;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>How to use Linq First Operator with condition</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
Linq Standard Query Operator
<br /> Element Operator - First With Condition
<br />How to get the first element of a sequence
</h2>
<hr width="450" align="left" color="CornFlowerBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="X-Large"
ForeColor="RoyalBlue"
Font-Italic="true"
>
</asp:Label>
<br />
<asp:Label
ID="Label2"
runat="server"
Font-Size="X-Large"
ForeColor="Crimson"
Font-Italic="true"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
OnClick="Button1_Click"
Text="Test Linq Query Operator - First"
Height="45"
Font-Bold="true"
ForeColor="DodgerBlue"
/>
</div>
</form>
</body>
</html>

- linq - How to get first element of a sequence or a default value
- linq - Get first element of a sequence that match condition or a default value
- linq - How to get the last element of a sequence
- linq - Get last element of a sequence that match condition or a default value
- linq - How to take a given number of elements from a sequence
- linq - How to return a default value if query result is empty
- linq - How to get element at a specified index or a default value
- linq - How to repeat an item to generate a sequence
- linq - How to determine whether two sequences are equal
- linq - How to get the single element of a sequence