I'm using FullTextSqlQuery to search items on specific list. Query returns results properly. Now I'd like to get SPListItem from search results. As I searched Internet, I found couple of examples, but they all are based on document libraries - getting file and associated with that file SPListItem.
My results contain path to item in such format:
https://<site>/<web>/Lists/<list>/DispForm.aspx?ID=5
I tried to use SPWeb's method GetListItem(path) with server relative url from above path, but returned item is null
So is there any way to get SPListItem from list based on item path returned from search results?