Home Authors Posts by Ricardo Costa

Ricardo Costa

Ricardo Costa
53 POSTS 1 COMMENTS
Solution Architect at |create|it|. Member of the Systems Integration and Web Development team. More recently, manager of the RAD team (Rapid Application Development) with greater focus on the OutSystems platform. Special topics of current interest include: Solution Architecture design, Integration Patterns and Enterprise Application Patterns, Software Factories, Code Generation, Web Development.

How to use FullTextSqlQuery to search in WSS

0
First, you have to add the following references: Microsoft.Sharepoint Microsoft.Sharepoint.Search Second: DataTable resultsDataTable = new DataTable();  using (SPSite site = new SPSite("http://server")) { FullTextSqlQuery query = new FullTextSqlQuery(site); ...

How to use KeywordQuery to search in WSS

0
First, you have to add the following references: Microsoft.Sharepoint Microsoft.Sharepoint.Search Second: DataTable resultsDataTable = new DataTable();  using (SPSite site = new SPSite("http://server")) {  KeywordQuery query = new KeywordQuery(site); query.QueryText = queryText; query.ResultTypes =...