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

  • Home
  • SEARCH
  • 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

Ask A Question

Stats

  • Questions 284k
  • Answers 284k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer RTFD is a particularly easy one, luckily. Check out the… May 13, 2026 at 4:31 pm
  • Editorial Team
    Editorial Team added an answer Assuming these forms are part of the same application, you… May 13, 2026 at 4:31 pm
  • Editorial Team
    Editorial Team added an answer It's been awhile, but I believe you can simply use… May 13, 2026 at 4:31 pm

Related Questions

I'm working on a Flash project right now and I am having to force
I have been fighting this problem with the help of a RegEx cheat sheet,
I have not been working in SQL too long, but I thought I understood
I've been fighting with the Canon EDSDK for a while now. I can successfully
Of late, I've been hearing many good things about functional programming languages such as

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.