![]() |
VOOZH | about |
dotnet add package AgileObjects.ReadableExpressions --version 4.1.3
NuGet\Install-Package AgileObjects.ReadableExpressions -Version 4.1.3
<PackageReference Include="AgileObjects.ReadableExpressions" Version="4.1.3" />
<PackageVersion Include="AgileObjects.ReadableExpressions" Version="4.1.3" />Directory.Packages.props
<PackageReference Include="AgileObjects.ReadableExpressions" />Project file
paket add AgileObjects.ReadableExpressions --version 4.1.3
#r "nuget: AgileObjects.ReadableExpressions, 4.1.3"
#:package AgileObjects.ReadableExpressions@4.1.3
#addin nuget:?package=AgileObjects.ReadableExpressions&version=4.1.3Install as a Cake Addin
#tool nuget:?package=AgileObjects.ReadableExpressions&version=4.1.3Install as a Cake Tool
ReadableExpressions provides extension methods and a
Debugger Visualizer
for readable, source-code versions of
Expression Trees,
as well as reflection objects like Type, FieldInfo, PropertyInfo, etc.
The Debugger Visualizer installer can be downloaded from Visual Studio Marketplace.
The visualizer has both Light and Dark themes:
...and output can be customised using various options:
.NET 5 had a breaking change, which disables BinaryFormatter serialization by default.
This has caused issues with the ReadableExpressions visualizers (and elsewhere)
when debugging ASP.NET Core apps as the VS debugger uses BinaryFormatter
to serialize objects before sending them to the visualizer.
The solution is to enable the
BinaryFormatter in Debug only by adding the following to your ASP.NET Core csproj:
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<EnableUnsafeBinaryFormatterSerialization Condition=" '$(Configuration)' == 'Debug' ">
true
</EnableUnsafeBinaryFormatterSerialization>
</PropertyGroup>
The extension methods are available on NuGet, and target .NET 3.5+ and .NETStandard 1.0+:
PM> Install-Package AgileObjects.ReadableExpressions
To translate an Expression, use:
using AgileObjects.ReadableExpressions;
string readable = myExpression.ToReadableString();
...this also works on DynamicLanguageRuntime expressions.
All code is licensed with the . Check out the documentation for more!
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp1.0 netcoreapp1.0 was computed. netcoreapp1.1 netcoreapp1.1 was computed. netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard1.0 netstandard1.0 is compatible. netstandard1.1 netstandard1.1 was computed. netstandard1.2 netstandard1.2 was computed. netstandard1.3 netstandard1.3 was computed. netstandard1.4 netstandard1.4 was computed. netstandard1.5 netstandard1.5 was computed. netstandard1.6 netstandard1.6 was computed. netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net35 net35 is compatible. net40 net40 is compatible. net403 net403 was computed. net45 net45 was computed. net451 net451 was computed. net452 net452 was computed. net46 net46 was computed. net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen30 tizen30 was computed. tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Universal Windows Platform | uap uap was computed. uap10.0 uap10.0 was computed. |
| Windows Phone | wp8 wp8 was computed. wp81 wp81 was computed. wpa81 wpa81 was computed. |
| Windows Store | netcore netcore was computed. netcore45 netcore45 was computed. netcore451 netcore451 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on AgileObjects.ReadableExpressions:
| Package | Downloads |
|---|---|
|
AgileObjects.AgileMapper
A zero-configuration, highly-configurable, unopinionated object mapper with viewable execution plans. Flattens, unflattens, deep clones, merges, updates and projects queries. Targets .NET 3.5+ and .NET Standard 1.0+ |
|
|
RaaLabs.Edge.Modules.EventHandling
Package Description |
|
|
TomSun.AspNetCore.RazorReact
Package Description |
|
|
Annium.Core.Mapper
Package Description |
|
|
IntoItIf.Dsl
The interface of IntoItIf library, decorated by interceptors logic |
Showing the top 11 popular GitHub repositories that depend on AgileObjects.ReadableExpressions:
| Repository | Stars |
|---|---|
|
recyclarr/recyclarr
Automatically sync TRaSH Guides to your Sonarr and Radarr instances
|
|
|
UiPath/CoreWF
WF runtime ported to work on .NET 6
|
|
|
json-api-dotnet/JsonApiDotNetCore
A framework for building JSON:API compliant REST APIs using ASP.NET and Entity Framework Core.
|
|
|
axle-h/Retro.Net
Retro hardware libraries in .NET Core with an Angular front end
|
|
|
DataDog/dd-trace-dotnet
.NET Client Library for Datadog APM
|
|
|
dsharlet/LiveSPICE
Real time SPICE simulation for audio signals
|
|
|
rikimaru0345/Ceras
Universal binary serializer for a wide variety of scenarios https://discord.gg/FGaCX4c
|
|
|
agileobjects/AgileMapper
A zero-configuration, highly-configurable, unopinionated object mapper with viewable execution plans. Flattens, unflattens, deep clones, merges, updates and projects queries. .NET 3.5+ and .NET Standard 1.0+.
|
|
|
higty/higlabo
HigLabo library provide 1.AI client library(OpenAI, Anthoripic, Groq) 2.Object Mapper(fastest in the world) 3.DbSharp(DAL generator) 4.Other.(Mail, Ftp, Utility...etc)
|
|
|
SIDOVSKY/EBind
🔵 .NET Data Binding we deserve: concise, fast, feature-rich
|
|
|
octokit/octokit.graphql.net
A GitHub GraphQL client library for .NET
|
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 4.1.3 | 343,705 | 6/29/2024 | |
| 4.1.2 | 2,856 | 6/22/2024 | |
| 4.1.0 | 139,933 | 7/8/2023 | |
| 4.0.0 | 323,761 | 1/6/2023 | |
| 3.3.0 | 911,618 | 4/6/2022 | |
| 3.2.0 | 217,762 | 1/27/2022 | |
| 3.1.1 | 37,682 | 12/15/2021 | |
| 3.1.0 | 18,269 | 11/14/2021 | |
| 3.0.0 | 30,871 | 10/13/2021 | |
| 3.0.0-preview2 | 2,311 | 7/29/2021 | 3.0.0-preview2 is deprecated because it is no longer maintained. |
| 3.0.0-preview1 | 1,648 | 7/2/2021 | 3.0.0-preview1 is deprecated because it is no longer maintained. |
| 2.6.0 | 972,900 | 4/28/2021 | |
| 2.6.0-preview1 | 2,103 | 4/6/2021 | 2.6.0-preview1 is deprecated because it is no longer maintained. |
| 2.5.1 | 602,187 | 7/20/2020 | |
| 2.5.0 | 99,858 | 5/26/2020 | |
| 2.4.1 | 4,582 | 5/18/2020 | |
| 2.4.0 | 13,525 | 5/1/2020 | |
| 2.3.2 | 693,842 | 7/7/2019 | |
| 2.3.1 | 7,694 | 6/16/2019 |
- Fixing binary operand type-is checks, re: #142