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.
Unleash the power of flexible search with GroupDocs.Search for .NET 24.6 (DLLs only package). Build complex AND, OR queries for accurate document data retrieval on Windows, Linux, and macOS platforms.
This version of the .NET search and indexing API lets you perform complex searches with the help of sophisticated boolean queries for precise information capture. Join AND and OR operators for targeted information search and level up your indexing solutions. 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*
Fine-tune your development workflows with optimized API methods for developing complex search logic using the latest .NET API version. The new features provide 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.