up vote 0 down vote favorite
1
share [g+] share [fb]

Problem: How to get Linq to make a default value of 'noImage.jpg' if null is returned from the database.

I'm querying a single table:

<asp:LinqDataSource ID="LinqDataSource1" runat="server" ContextTypeName="Materials.MaterialsDataClassesDataContext"
    TableName="Materials" EnableDelete="True" EnableInsert="True" EnableUpdate="True">
</asp:LinqDataSource>

then displaying images:

<telerik:GridTemplateColumn HeaderText="Image" UniqueName="Image">  
                        <ItemTemplate>  
                            <a href="<%=VirtualPathUtility.ToAbsolute("~/")%>showFrontEndMaterialDetail.aspx?materialId=<%# Eval("Id")%>">
                            <img src="<%=VirtualPathUtility.ToAbsolute("~/")%>Images/Uploaded/Thumbs/<%# Eval("Image1") %>"></img></a>
                        </ItemTemplate>  
                     </telerik:GridTemplateColumn>

I thought I had it (but didn't) with:

<%# (string?)Eval("Image1") ?? "noImage.jpg" %>
link|improve this question

There's no such thing as string?. – Necros Aug 5 '10 at 1:59
feedback

1 Answer

up vote 1 down vote accepted

How about

String.IsNullOrEmpty(Convert.ToString(Eval("Image1"))) ? "noImage.jpg" : Eval("Image1")
link|improve this answer
1  
Thanks Tahbaza.. stackoverflow.com/questions/3411155/c-eval-aspx-fun useful too to shorten to <%# Eval("Image1") ?? "noImage.jpg" %> – Dave Mateer Aug 5 '10 at 2:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.