LogicBuilder.Structures 8.0.0

Prefix Reserved
dotnet add package LogicBuilder.Structures --version 8.0.0
                    
NuGet\Install-Package LogicBuilder.Structures -Version 8.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LogicBuilder.Structures" Version="8.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LogicBuilder.Structures" Version="8.0.0" />
                    
Directory.Packages.props
<PackageReference Include="LogicBuilder.Structures" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LogicBuilder.Structures --version 8.0.0
                    
#r "nuget: LogicBuilder.Structures, 8.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package LogicBuilder.Structures@8.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LogicBuilder.Structures&version=8.0.0
                    
Install as a Cake Addin
#tool nuget:?package=LogicBuilder.Structures&version=8.0.0
                    
Install as a Cake Tool

LogicBuilder.Structures

CI CodeQL codecov Quality Gate Status NuGet

A comprehensive metadata library for building dynamic LINQ expressions through descriptors. This library provides a rich set of classes that represent expression components, enabling the construction of complex LINQ queries from serializable metadata structures.

Purpose

LogicBuilder.Structures serves as the metadata foundation for the LogicBuilder.Expressions framework. Instead of writing LINQ expressions directly in code, developers can:

  1. Define expressions as metadata using descriptor classes
  2. Serialize and store query definitions independent of code
  3. Dynamically build LINQ Expression Trees at runtime
  4. Support data-driven query scenarios where query logic comes from configuration or user input

Key Features

Expression Building Blocks

  • Binary Operations: EqualsBinaryDescriptor, GreaterThanBinaryDescriptor, LessThanBinaryDescriptor, etc.
  • Logical Operations: AndBinaryDescriptor, OrBinaryDescriptor, NotDescriptor
  • Arithmetic Operations: AddBinaryDescriptor, SubtractBinaryDescriptor, MultiplyBinaryDescriptor, DivideBinaryDescriptor, ModuloBinaryDescriptor

Queryable Operations

  • Filtering: WhereDescriptor, AnyDescriptor, AllDescriptor
  • Projection: SelectDescriptor, SelectManyDescriptor
  • Ordering: OrderByDescriptor, ThenByDescriptor
  • Aggregation: CountDescriptor, SumDescriptor, AverageDescriptor, MinDescriptor, MaxDescriptor
  • Paging: SkipDescriptor, TakeDescriptor
  • Grouping: GroupByDescriptor
  • Element Access: FirstDescriptor, LastDescriptor, SingleDescriptor, and their OrDefault variants

Collection Operations

  • Set Operations: UnionDescriptor, ConcatDescriptor, ExceptDescriptor
  • Collection Tests: AnyDescriptor, AllDescriptor, ContainsDescriptor

String Functions

  • SubstringDescriptor, ContainsDescriptor, StartsWithDescriptor, EndsWithDescriptor
  • ToUpperDescriptor, ToLowerDescriptor, TrimDescriptor
  • LengthDescriptor, IndexOfDescriptor, ConcatDescriptor

Date/Time Functions

  • Component extraction: YearDescriptor, MonthDescriptor, DayDescriptor, HourDescriptor, MinuteDescriptor, SecondDescriptor
  • Conversions: ConvertToNumericDateDescriptor, ConvertToNumericTimeDescriptor
  • Fractional seconds: FractionalSecondsDescriptor

Math Functions

  • FloorDescriptor, CeilingDescriptor, RoundDescriptor

Type Operations

  • Casting: CastDescriptor, ConvertDescriptor, CollectionCastDescriptor, CollectionOfTypeDescriptor
  • Type Checking: IsOfDescriptor
  • Conversions: ConvertToStringDescriptor, ConvertToEnumDescriptor, ConvertToNullableUnderlyingValueDescriptor

Member Access

  • MemberSelectorDescriptor - Access properties and fields
  • ParameterDescriptor - Define lambda parameters
  • ConstantDescriptor - Represent constant values
  • CollectionConstantDescriptor - Represent collection constants

Custom Operations

  • CustomMethodDescriptor - Call custom methods on types
  • MemberInitDescriptor - Initialize anonymous types or objects

Integration

Works seamlessly with LogicBuilder.Expressions.Utils to:

  • Map descriptors to LINQ Expression Trees via AutoMapper
  • Execute dynamic queries against Entity Framework, LINQ to Objects, and other LINQ providers
  • Build complex filtering, sorting, paging, and aggregation logic from configuration

Supported Scenarios

  • OData-style filtering with complex predicates
  • Dynamic reporting queries with runtime-defined aggregations
  • Configurable business rules expressed as queryable filters
  • User-defined search criteria converted to type-safe LINQ expressions
  • Multi-tenant filtering applied dynamically based on context

Benefits

  1. Serializable: All descriptors are POCOs that can be JSON/XML serialized
  2. Type-safe: Generates strongly-typed LINQ expressions at runtime
  3. Testable: Expression logic can be unit tested through descriptors
  4. Maintainable: Query logic separated from code into data structures
  5. Extensible: Custom descriptors can be added for domain-specific needs
  • LogicBuilder.Expressions.Utils: Descriptors can be converted to their corresponding operators which generate executable LINQ expressions
  • LogicBuilder.EntityFrameworkCore.SqlServer: Entity Framework integration and testing
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework 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 tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on LogicBuilder.Structures:

Package Downloads
LogicBuilder.Expressions.Utils

Creates CRUD related LINQ queries from data.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.0.0 281 4/1/2026
7.1.0 658 1/12/2026
7.0.0 356,441 11/25/2024
6.0.3 1,265,810 11/3/2024
6.0.2 1,147 8/11/2024
6.0.1 3,566 3/28/2024
6.0.0 1,220,490 12/27/2023
5.0.12 10,880 10/14/2023
5.0.11 237 10/14/2023
5.0.10 185,100 8/15/2023
5.0.9 926 7/16/2023
5.0.8 1,175 5/10/2023
5.0.7 5,587 10/1/2022
5.0.6 615,452 6/16/2022
5.0.4 1,164,491 4/15/2022
5.0.3 1,863 4/15/2022
5.0.2 5,318 12/24/2021
5.0.1 1,349 12/14/2021
5.0.0 24,636 12/14/2021
4.1.3 2,242 9/8/2021
Loading failed

Refactoring to optimize DevOps.