I\'m working on a database in C# when I hit the display button I get an error:
Error:
Cannot bind to the property or column LastName on the Data
I had the same problem and it was because the columns in both my tables had the same column names. For example:
Assets;Property and the second table name was Plants;asset_number;
It gave the error you describe above, but mine said asset_number.Solution: I changed the column names in my table Plants to asset_number1 and then it had no problem. (I did have to delete all my old columns in Plants to redo the new columns.)