LinqToSolr 3.1.1
See the version list below for details.
dotnet add package LinqToSolr --version 3.1.1
NuGet\Install-Package LinqToSolr -Version 3.1.1
<PackageReference Include="LinqToSolr" Version="3.1.1" />
paket add LinqToSolr --version 3.1.1
#r "nuget: LinqToSolr, 3.1.1"
// Install LinqToSolr as a Cake Addin #addin nuget:?package=LinqToSolr&version=3.1.1 // Install LinqToSolr as a Cake Tool #tool nuget:?package=LinqToSolr&version=3.1.1
LinqToSolr
LinqToSolr is an intuitive and lightweight C# library designed to enhance Solr queries with the power of Linq. It seamlessly integrates Solr search capabilities into .NET applications, facilitating cleaner and more maintainable code. LinqToSolr is suitable for developing complex search solutions or simplifying query logic.
To install:
dotnet add package LinqToSolr
Supported Methods
The library supports a variety of Linq methods, including but not limited to:
Where
First
FirstOrDefault
Select
Contains
Array.Contains(solrField)
StartsWith
EndsWith
GroupBy
Take
Skip
OrderBy
ThenBy
OrderByDescending
ThenByDescending
ToListAsync
AddOrUpdateAsync
DeleteAsync
Usage Instructions
Defining a Model
First, define a model class to represent your Solr document:
public class MyProduct{
public int Id{get;set;}
[LinqToSolrField("username")]
public string Name{get;set}
public string Group{get;set}
[LinqToSolrField("deleted")]
public bool IsDeleted{get;set}
public string[] Tags{get;set;}
[LinqToSolrFieldIgnore]
public string CustomField{}
}
Configuration
Initialize a configuration class for the service:
var solrConfig = new LinqToSolrConfiguration("http://localhost:8983/") // URL to Solr instance, if solr has different location (not under/solr) set it to http://localhost:8983/somecustomlocation
.MapCoreFor<MyProduct>("MyProductIndex"); // Mapping your model to Solr Index
Creating a Service
Instantiate the base service and provide the configuration:
var solrService = new LinqToSolrService(solrConfig);
Extending LinqToSolrService
You may create a custom service that inherits from LinqToSolrService:
public class MyProductService: LinqToSolrService{
private Task<IQueryable<>> IQueryable<MyProduct> IsNotDeleted()
{
return AsQueryable<MyProduct>().Where(x=> !x.IsDeleted);
}
public async Task<ICollection<MyProduct>> GetProductsByIds(params int[] ids)
{
return await IsNotDeleted().Where(x=> ids.Contains(x.Id)).ToListAsync();
}
}
Linq Query Examples
Where Clause
await solrService.AsQueryable<MyProduct>().Where(x => x.Group == "MyGroup1").ToListAsync();
FirstOrDefault
var groupArray = new[] { "MyGroup1", "MyGroup2", "MyGroup3", "MyGroup4" };
var product = await solrService.AsQueryable<MyProduct>().FirstOrDefault(x => x.Id == 123);
OrderBy & OrderByDescending
var orderedProducts = await solrService.AsQueryable<MyProduct>()
.Where(x => x.Group == "MyGroup1")
.OrderBy(x => x.Id)
.ThenByDescending(x => x.Name)
.ToListAsync();
Contains Examples
solrService.AsQueriable<MyProduct>().Where(x=> x.Name.Contains("productName")).ToList();
var array = new[]{"str2", "str3", "str4"};
solrService.AsQueriable<MyProduct>().Where(x=> array.Contains(x.Name)).ToList();
solrService.AsQueriable<MyProduct>().Where(x=> x.Tags.Contains("tag1")).ToList();
OrderBy & OrderByDescending
await solrService.AsQueriable<MyProduct>().Where(x=> x.Group == "MyGroup1").OrderBy(x=>x.Id).ThenByDescending(x=>x.Name).ToListAsync();
Facets
var docs = await solrService.AsQueriable<MyProduct>().ToFacetsAsync(x => x.IsActive) ;
var activeList = docs[x=>x.IsActive]; // bool list of facets
var docs = await solrService.AsQueriable<MyProduct>().Where(x=>x.IsActive).ToFacetsAsync(x => x.Tags) as LinqToSolrFacetDictionary<SolrDocument>; // facets with query for arrays
var tagsList = docs.GetFacet<string[], string>(x => x.Tags);
Select Clause
solrService.AsQueriable<MyProduct>().Where(x=> x.Group == "MyGroup1").Select(x=x.Name).ToList();
solrService.AsQueriable<MyProduct>().Where(x=> x.Group == "MyGroup1").Select(x=x new {x.Name, x.Group}).ToList();
Solr Document Interaction
Adding or Updating Documents Add or update documents in a Solr core:
var products = new[] {
new MyProduct { Id = 1, Name = "Product One" },
new MyProduct { Id = 2, Name = "Product Two" },
new MyProduct { Id = 3, Name = "Product Three" }
};
await solrService.AddOrUpdateAsync(products);
Deleting Documents Delete documents by specifying an array of ids:
await solrService.Where(x => x.Id == 123).DeleteAsync<MyProduct>();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.1 is compatible. netstandard1.2 is compatible. netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 is compatible. netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Windows Phone | wpa81 was computed. |
Windows Store | netcore was computed. netcore45 was computed. netcore451 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- System.Net.Http (>= 4.3.4)
-
.NETStandard 1.1
- NETStandard.Library (>= 1.6.1)
- System.Net.Http (>= 4.3.4)
-
.NETStandard 1.2
- NETStandard.Library (>= 1.6.1)
- System.Net.Http (>= 4.3.4)
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
- System.Collections.Specialized (>= 4.3.0)
- System.Net.Http (>= 4.3.4)
- System.Reflection.TypeExtensions (>= 4.7.0)
-
.NETStandard 1.6
- NETStandard.Library (>= 1.6.1)
- System.Collections.Specialized (>= 4.3.0)
- System.Net.Http (>= 4.3.4)
-
.NETStandard 2.0
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
3.1.3 | 137 | 6/9/2024 | |
3.1.1 | 120 | 2/29/2024 | |
3.1.0 | 91 | 2/28/2024 | |
2.1.1.1 | 11,504 | 7/11/2017 | |
2.1.1 | 1,060 | 7/6/2017 | |
2.1.0.9 | 1,117 | 6/20/2017 | |
2.1.0.8 | 1,137 | 6/12/2017 | |
2.1.0.7 | 1,089 | 6/7/2017 | |
2.1.0.6 | 1,098 | 6/6/2017 | |
2.1.0.5 | 1,246 | 6/5/2017 | |
2.1.0.3 | 1,141 | 5/8/2017 | |
2.1.0.2-prerelease | 866 | 5/8/2017 | |
1.0.0.6 | 1,198 | 4/27/2017 | |
1.0.0.5 | 991 | 4/27/2017 | |
1.0.0.4 | 1,046 | 4/21/2017 | |
1.0.0.3 | 1,031 | 4/20/2017 |