Click here to Skip to main content
15,887,596 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am using Nhibernate with asp.net

i have got data using HQL in Ilist

but when i bind Ilist with gridview

I gives me error "customername" field not foung in selected datasiurce

althoug i define column in gridview and there is a column with same name

My confusion is

when i decalare Ilist what should be it type


i mean i have 2 classes
1) Customer 2) City

i have got data from database by using this Query
SQL
"SELECT ct.Cityname,cust.CustomerName,cust.Gender FROM City as ct,Customers as cust where ct.Cityid=cust.Cityid"


means

2 different table

so what should be ilist type
(eg)

C#
IList<city> Lst = new List<city>();

OR
C#
IList<cusomer> Lst = new List<cusomer>();


and how to bind it with gridview

thanks
Posted
Updated 13-Mar-12 3:11am
v2
Comments
Herman<T>.Instance 14-Mar-12 11:56am    
have you read this ?

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900