Click here to Skip to main content
15,885,985 members
Articles / Web Development / ASP.NET

Databinder.Eval using Lamda Expressions

Rate me:
Please Sign up or sign in to vote.
4.80/5 (5 votes)
7 Apr 2010CPOL 24.9K   20   4
Using lambda expression to help with compile time checking of Eval statements

Introduction

We all have done it, and we all know how it can be frustrating when dealing with magic strings. While not terribly hard to fix or work around, the Databinder.Eval("") method needs to use strings in order to work. However, using some extension methods (or a helper class) can remove the dependency on these magic strings and allow your code to use lambda expressions instead.

Using the Code

C#
public static class ExtensionMethods
{
    public static string Evaluate<T>(this ListViewItem item, 
	Func<T, object> expression)
    {
        var result = expression((T)item.DataItem);
        if (result != null)
            return result.ToString();
        return null;
    }

    public static TOutput Evaluate<T, TOutput>
	(this ListViewItem item, Func<T, TOutput> expression)
    {
        return (TOutput)expression((T)item.DataItem);
    }
}		 

So, with these, instead of using code that looks like this:

ASP.NET
<asp:GridView ID="gvName" runat="server" AutoGenerateColumns="False"
       HorizontalAlign="Center">
     <Columns>
         <asp:TemplateField HeaderText="County Name">
             <ItemTemplate>
                 <%# Eval("County.Name") %>
             </ItemTemplate>
         </asp:TemplateField>
     </Columns>
</asp:GridView>

You can use the slightly more verbose, but more stable lambda version:

ASP.NET
 <asp:GridView ID="gvName" runat="server" AutoGenerateColumns="False" 
	HorizontalAlign="Center">
   <Columns> 
     <asp:TemplateField HeaderText="County Name">               
       <ItemTemplate>
         <%# Container.Evaluate<AddressEntity>(c=>c.County.Name) %> 
       </ItemTemplate>
     </asp:TemplateField>            
   </Columns>
</asp:GridView>  

Points of Interest

Just remember to include the namespace of wherever you placed your code either at the top of the page or in the web.config.

The second version of the Evaluate method allows you to return the data typed as it actually is instead of returning it as the string. This is useful if you need to call page methods and don't want to cast it once to a string with Eval(), then recast it back.

ASP.NET
<%# DoSomething(Container.Evaluate<AddressEntity, int?>(c=>c.County.CountyID)) %>   

History

  • 04/07/2010 - Original draft

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Harland Financial Solutions
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralUsing default behaviour Pin
Magnus_10-May-10 22:53
Magnus_10-May-10 22:53 
Is it not just as easy to write:
((AddressEntity)Container.DataItem)).County.Name
Magnus Persson

GeneralRe: Using default behaviour Pin
Stephen Inglish7-Jun-10 10:51
Stephen Inglish7-Jun-10 10:51 
GeneralTwo-way binding Pin
IlyaD_Russia16-Apr-10 3:21
IlyaD_Russia16-Apr-10 3:21 
GeneralGreat! Very useful Pin
Lion_cl12-Apr-10 19:23
Lion_cl12-Apr-10 19:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.