I have Table named tbl_search with columns : id(int), title(nvarchar100), result(ntext) and i want using SQL query, like
Table
tbl_search
id(int), title(nvarchar100), result(ntext)
SQL query
Your SQL Statement only returns the title not the full entity.
Change:
Select top 1 title From tbl_search Where title=@title and id=@id
to:
Select top 1 * From tbl_search Where title=@title and id=@id