Welcome to the WPF feedback portal. We’re happy you’re here! If you have feedback on how to improve the WPF, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

I have 2 Models


public class ProductInventory 

 { 

public long ProductInventoryId { get; set ;}

public long ProductId { get; set; }
public virtual Product Product { get; set; }

}

public class Product

 { 

public long ProductId { get; set ;}

public string Name{ get; set; }

public virtual ICollection ProductInventories { get; private set; } = new ObservableCollection();

}


I have a ViewModel of 
ProductInventory and I want to show 
ProductInventory.Product.Name in a SfDataGridColumn how can I do it?
in ViewModel I can access it by Products[index].Product.Name but in Xaml I can't.