Click here to Skip to main content
Licence CPOL
First Posted 7 Apr 2010
Views 8,621
Bookmarked 19 times

Databinder.Eval using Lamda Expressions

By | 7 Apr 2010 | Article
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

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: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: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.

<%# 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)

About the Author

Stephen Inglish

Software Developer (Senior)
Harland Financial Solutions
United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralUsing default behaviour PinmemberPartenon22:53 10 May '10  
GeneralRe: Using default behaviour PinmemberStephen Inglish10:51 7 Jun '10  
GeneralTwo-way binding PinmemberIlyaD_Russia3:21 16 Apr '10  
GeneralGreat! Very useful PinmemberLion_cl19:23 12 Apr '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 7 Apr 2010
Article Copyright 2010 by Stephen Inglish
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid