DropDownList with LinqDataSource and an empty option - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:13:25Z http://stackoverflow.com/feeds/question/278290 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/278290/dropdownlist-with-linqdatasource-and-an-empty-option 2 DropDownList with LinqDataSource and an empty option cruster 2008-11-10T16:11:21Z 2008-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#278315 3 Answer by DOK for DropDownList with LinqDataSource and an empty option DOK 2008-11-10T16:19:21Z 2008-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>&lt;asp:DropDownList ID="categories" runat="server" AppendDataBoundItems="True" AutoPostBack="True" DataSourceID="categoriesDataSource" DataTextField="CategoryName" DataValueField="CategoryID" EnableViewState="False"&gt; &lt;asp:ListItem Value="-1"&gt; -- Choose a Category -- &lt;/asp:ListItem&gt; &lt;/asp:DropDownList&gt; </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#278326 0 Answer by Will for DropDownList with LinqDataSource and an empty option Will 2008-11-10T16:22:50Z 2008-11-10T16:22:50Z <p>I'd provide an extension method on <code>IEnumerable&lt;string&gt;</code> that prepended an item to the beginning of the list:</p> <pre><code> public static IEnumerable&lt;string&gt; Prepend(this IEnumerable&lt;string&gt; 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>