Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 537753
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:57:36+00:00 2026-05-13T09:57:36+00:00

I have been fighting this issue for some time so today I started a

  • 0

I have been fighting this issue for some time so today I started a new project and simplified things to the basics. What I want to do is have a listbox, bound to a collection with a detail view of the selected item shown below. It all works fine except the items that refer to other tables simply show the foreign key. I was able to resolve this with a linq query but realize that the method I used is hackish.

public partial class Window1 : Window
{
    DataClasses1DataContext db = new DataClasses1DataContext();
    public IEnumerable<Issue> issues = null;

    public Window1()
    {
        InitializeComponent();
        issues = from i in db.Issues
                 select i;
        this.DataContext = issues;
    }

    // The hacked in query that correctly displays the name instead of Key
    private void IssueListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        List<Issue> _issues = issues.ToList();
        int empl = _issues[IssueListBox.SelectedIndex].IssOwner;

        OwnerTextBlock.Text = (from emp in db.Employees
                              where emp.EmpID == empl
                              select emp.EmpFirstName.ToString() + " " + 
                                       emp.EmpLastName.ToString()).Single();            
    }
}

The Xaml as simple as I could get it:

<Window.Resources>
    <DataTemplate x:Key="ShowIssueDetail">
        <TextBlock Text="{Binding Path=IssTitle}" FontWeight="Bold" FontSize="14"/>
    </DataTemplate>
</Window.Resources>

    <StackPanel>
    <TextBlock Text="Issues" FontWeight="Bold" />
    <ListBox x:Name="IssueListBox"
              ItemsSource="{Binding}"
              ItemTemplate="{StaticResource ShowIssueDetail}"
              IsSynchronizedWithCurrentItem="True"
              HorizontalContentAlignment="Stretch" SelectionChanged="IssueListBox_SelectionChanged">
    </ListBox>

    <TextBlock Text="{Binding Path=IssDescription}" />
    <TextBlock Text="{Binding Path=IssOwner}" /> <!--I want this to show the name, not the Key-->
    <TextBlock Name='OwnerTextBlock' /> <!--This has the name set in code from the Linq query and works-->
</StackPanel>

How do I do this correctly?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:57:37+00:00Added an answer on May 13, 2026 at 9:57 am

    The Linq2Sql ORM auto generates properties that represent related records based on relations in the model. In your case I would guess that if you change your binding of OwnerTextBlock to the following – you’ll get what you want:

    <TextBlock Name="OwnerTextBlock" Text="{Binding Employee.FirstName}" /> 
    

    (I’ve only bound FirstName because to merge first and last names using XAML requires a MultiBinding and an IMultiValueConverter implementation – which is out of scope for this answer 🙂 )

    Remember that there must be an ORM relation between the related entities, for this to work.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been working on a web services related project for about the last
I have been looking into IKVMing Apache's FOP project to use with our .NET
Have been looking at the MVC storefront and see that IQueryable is returned from
Have been studying the file system related classes of Adobe AIR 1.5, but so
We have been using CruiseControl for quite a while with NUnit and NAnt. For
I have been experimenting with woopra.com A web analytics tool. Which requires a piece
I have been working with Visual Studio (WinForm and ASP.NET applications using mostly C#)
I have been searching everywhere for the following functionality in Lisp, and have gotten
I have been using PHP and JavaScript for building my dad's website. He wants
I have been trying to implement Win32's MessageBox using GTK. The app uses SDL/OpenGL,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.