Hi, I have DataGrid with columns "FirstName" and "LastName" and I added public string FullName => $"{FirstName} {LastName}"
to Model so I can display full name in one column in data grid.
I changed Property in data grid to FullName and I see e.g. "John Doe" in one column but the filter is not working. If I put "FullName" in Filter Property and try to type first or last name nothing is happening. If I write "FirstName" then results will be filtered by FirstName but nothing will be happening if I write LastName. Same thing if FilterProperty is "LastName", result will be LastName but for "FirstName" nothing.
I tried with FilterOperator Contains but no luck with that.
Thanks