So I have my List view in XAML:
<ListView Name="lstContacts">
<ListView.View>
<GridView>
<GridViewColumn Header="ID" DisplayMemberBinding="{Binding ID}"/>
<GridViewColumn Header="Name" DisplayMemberBinding="{Binding FullName}"/>
</GridView>
</ListView.View>
</ListView>
Then I have contacts Table pulled from the Database Using LINQ and converted to a List. Then I bound the list ItemsSource to the table like this.
MyDatabaseDataContext dc = new MyDatabaseDataContext();
lstContacts.ItemsSource = dc.Contacts.ToList();
And all works fine as far as I can bind to a specific column like "ID" or the "FirstName" "LastName" of my table. But I want to combine the "FirstName" and "LastName" to bind to one column as "FullName". I am sure this is something simple and several ways to do it. But for the life of me I can't figure it out. Any help would be much apreciated