DropDownList with LinqDataSource and an empty option - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:13:25Zhttp://stackoverflow.com/feeds/question/278290http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/278290/dropdownlist-with-linqdatasource-and-an-empty-option2DropDownList with LinqDataSource and an empty optioncruster2008-11-10T16:11:21Z2008-11-10T16:22:50Z
<p>Is there some elegant way to add an empty option to a DropDownList bound with a LinqDataSource?</p>
http://stackoverflow.com/questions/278290/dropdownlist-with-linqdatasource-and-an-empty-option/278315#2783153Answer by DOK for DropDownList with LinqDataSource and an empty optionDOK2008-11-10T16:19:21Z2008-11-10T16:19:21Z<p>Here's how to add a value at the top of the list. It can be an empty string, or some text.</p>
<pre><code><asp:DropDownList ID="categories" runat="server" AppendDataBoundItems="True" AutoPostBack="True" DataSourceID="categoriesDataSource" DataTextField="CategoryName" DataValueField="CategoryID" EnableViewState="False">
<asp:ListItem Value="-1">
-- Choose a Category --
</asp:ListItem>
</asp:DropDownList>
</code></pre>
<p>Be sure to set the DropDownList's AppendDataBoundItems=True. </p>
http://stackoverflow.com/questions/278290/dropdownlist-with-linqdatasource-and-an-empty-option/278326#2783260Answer by Will for DropDownList with LinqDataSource and an empty optionWill2008-11-10T16:22:50Z2008-11-10T16:22:50Z<p>I'd provide an extension method on <code>IEnumerable<string></code> that prepended an item to the beginning of the list:</p>
<pre><code> public static IEnumerable<string> Prepend(this IEnumerable<string> data, string item)
{
return new string[] { item == null ? string.Empty : item }.Union(data);
}
</code></pre>
<p>Its sort of linq-y, as it uses the linq extension method Union. Its a little cleaner than doing this:</p>
<pre><code>var result = new string[]{string.Empty}.Union(from x in data select x.ToString());
</code></pre>