I have created a filter on my finder-method, but I keep getting this error:
Could not find exactly 1 Member with name 'Status'
Parameter name: fieldName
My command is like this: SELECT [Status],[Projectnr],[Titel] FROM [MYTABLE] WHERE([Titel] LIKE @@TitelFilter)
And I have created all the appropriate filters, parameters etc.
I have tried entering a filter-value which I know only returns one record, but I get the same error.
If I hardcode my statement like this: SELECT [Status],[Projectnr],[Titel] FROM [MYTABLE] WHERE([Titel] LIKE '%m%')
It works fine and returns a lot of records.
Any ideas why I get the above error when filtering with a parameter?