we try to get the detail description using node id using examine search,actually the content we are searching related to multinode picker from that we want to map and display the record
my questions is that passing node id in the url seraching details value using examine search and display the record
I'm not so sure what you are trying to do but when I need to find a node via Examine I would add a query to my search that will query the relevant property (Field).
using node id searching results in examine
we try to get the detail description using node id using examine search,actually the content we are searching related to multinode picker from that we want to map and display the record
my questions is that passing node id in the url seraching details value using examine search and display the record
Hi Kannandesikan,
I'm not so sure what you are trying to do but when I need to find a node via Examine I would add a query to my search that will query the relevant property (Field).
You can find all the relevant Examine info here:
http://umbraco.com/follow-us/blog-archive/2011/9/16/examining-examine.aspx
Look for:
var query = searchCriteria.Field(
"nodeName"
,
yourValye
)
.Compile();
var searchResults = Searcher.Search(query);
You can pass any value to the query.
is working on a reply...