I have a problem in filtering TypedView. View is constructed from 3 tables.
After this code:
_ContactListViewTypedView contactListViewCollection =
new ContactListViewTypedView();
IPredicateExpression filter = new PredicateExpression();
filter.Add(PredicateFactory.Like(ContactFieldIndex.LastName, SearchTextBox.Text+"*"));
contactListViewCollection.Fill(0, null, true, filter);
_
I have exception : System.Data.SqlClient.SqlException: The multi-part identifier "dbo.Contact.LastName" could not be bound.
this exception throw in line:
_
public bool GetMultiAsDataTable(...)
{
return base.PerformGetMultiAsDataTableAction(...);
}
_
How to fix this issue ?