Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
This release of GroupDocs.Search for .NET 24.6 (MSI) enables developers to work with enhanced flexibility in building boolean search queries within their .NET applications.
Perform complex searches using sophisticated boolean queries for precise document retrieval with this .NET search and indexing API release. Combine AND and OR operators for targeted searching and take your indexing solutions to the next level. Check out the following code sample to learn how to use this feature in your C# apps.
string indexFolder = @"c:\MyIndex\"; string documentsFolder = @"c:\MyDocuments\"; // Creating an index in the specified folder Index index = new Index(indexFolder); // Indexing documents from the specified folder index.Add(documentsFolder); string word1 = "result"; string word2 = "test"; string word3 = "song"; // Build And query SearchQuery queryAnd = SearchQuery.CreateAndQuery( SearchQuery.CreateWordQuery(word1), SearchQuery.CreateWordQuery(word2), SearchQuery.CreateWordQuery(word3)); // Build Or query SearchQuery queryOr = SearchQuery.CreateOrQuery( SearchQuery.CreateWordQuery(word1), SearchQuery.CreateWordQuery(word2), SearchQuery.CreateWordQuery(word3)); // Search with And query SearchResult result1 = index.Search(queryAnd); // Search with Or query SearchResult result2 = index.Search(queryOr);
Source*
Streamline your development process with intuitive API methods for building complex search logic using the latest .NET API version. The new functionalities offer better control over search behavior within your .NET applications.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Search for .NET 24.6 Release Notes.