You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DelegateDecompiler is a .NET library that decompiles delegates and method bodies to their lambda representation. It enables computed properties in LINQ queries by translating `[Computed]` attributes into executable expressions that can be processed by Entity Framework and other ORMs.
6
+
7
+
## Core Components
8
+
9
+
-**`ComputedAttribute`**: Marks properties/methods for decompilation
10
+
-**`MethodBodyDecompiler`**: Core IL decompilation engine
11
+
-**`DecompileExtensions`**: Public API for decompiling delegates/queries
12
+
-**`Processors/`**: Pluggable processors for different IL opcodes
0 commit comments