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
varp=db.GetType().GetProperty(t,BindingFlags.IgnoreCase|BindingFlags.Public|BindingFlags.Instance)??thrownewInvalidOperationException($"Property '{t}' not found on type '{db.GetType()}'");
227
+
returnp.GetValue(db)is not IQueryable<dynamic>q?Array.Empty<dynamic>():[.. q.Run(query)];
Copy file name to clipboardExpand all lines: ReadMe.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Infragistics.QueryBuilder.Executor
2
2
3
-
A .NET 9 library for dynamic, strongly-typed query building and execution over Entity Framework Core data sources. Supports advanced filtering, projection, and SQL generation.
3
+
A .NET 8, .NET 9 library for dynamic, strongly-typed query building and execution over Entity Framework Core data sources. Supports advanced filtering, projection, and SQL generation.
@@ -61,9 +61,10 @@ In your `Startup.cs` or Program configuration:
61
61
62
62
## Dependencies
63
63
64
-
- .NET 9
64
+
- .NET 8 or .NET 9
65
65
- Microsoft.EntityFrameworkCore
66
66
- AutoMapper
67
+
- builder.Services.AddControllers().AddNewtonsoftJson(o => o.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore) for working SwaggerUI
0 commit comments