Browse our Products

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.

 

GroupDocs.Search for .NET 24.6 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 236.24MB
  • Date Added:
  • 20/6/2024

Description

This ZIP file contains only the GroupDocs.Search for .NET 24.6 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use GroupDocs.Search for .NET without the MSI installer. This ZIP download does not contain the demo projects.

File Details

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.

Craft Complex Search Queries Effortlessly

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*

Streamlined Code and Refined Developer Experience

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.

 English