Hello,
I'm looking for a way to search properties of objects inside of my base class. As an example, take the "immediate searching" example from your documentation (https://blazor.syncfusion.com/documentation/datagrid/searching#immediate-searching) as it comes close to my implementation and extend the "Order" class with the following:
public class Order
{
public int OrderID { get; set; }
public string CustomerID { get; set; }
public bool Verified { get; set; }
public double? Freight { get; set; }
public List<Item> Items { get; set; }
}
public class Item
{
public int ItemID { get; set; }
public string Name { get; set; }
}
Now I want the search function (triggered by "OnInput" in the example) to include the item name from my order. So when I enter "orange", I want to see all orders that included oranges.
Thank you for your help!