ciao a tutti, devo effettuare un databind di una label attraverso un objectdatasource..se il metodo ritorna un intero come cosa devo mettere in "Eval"??:

codice:
<asp:FormView ID="FrmViewRankingFirst" runat="server" DataSourceID="NotificationRankFirstDataSource" 
                AllowPaging="True">
                <ItemTemplate>
                    <asp:Label ID="Label1" runat="server" Text='<%#Eval("COSA METTO??")%>'/>
                </ItemTemplate>
            </asp:FormView>

codice:
<asp:ObjectDataSource   
            ID="NotificationRankFirstDataSource"  
            runat="server"  
            TypeName="Fifa.Business.RankingManager"  
            SelectMethod="GetFirst"  
            >  
        </asp:ObjectDataSource>
codice:
 public Int32 GetFirst()
        {

            ISession session = SessionHelper.OpenSession();
            IList<Int32> sql = session.CreateSQLQuery("Select vinte as First from qr_classifica where NotificationRank=1").List<Int32>();
            return sql[0];
        }
grazie