Hi,
Since I'm new to NHibernate I have some problems with putting achieved data into datagridview.
Basicly here is what I do:
bindingSource.DataSource = provider.GetBookById(1);
dataGridView1.DataSource = bindingSource;
and thats my simple database structure:
http://img338.imageshack.us/img338/115/db1t.jpgData I get from method GetBookById(1) is in form
int
string
string
publisher
In datagridview all of my columns are shown properly but Publisher which shows DataTransfer.Publisher.
I just have no clue how to extract PublisherName from Publisher Object in Datagridview.
Any sugestions are welcome :)
Thanks in advance!