-
-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider making ICarterModule.AddRoutes a static abstract method #338
Comments
As #279 says, you shouldn't be injecting services into your classes constructors, minimal API does not work like that. They should be in the RequestDelegate public class MyModule : ICarterModule
{
public void AddRoutes(IEndpointRouteBuilder app)
{
app.MapGet("/home", IService service => {
var result = service.Foo();
return Results.Ok(result);
});
}
} |
Yes, I understand that. But with a static abstract method: Which is good for a library interface, no? |
I agree but making a method on an interface abstract static is not going to
cause a compiler error if a class implements it and injects something into
a constructor
…On Sat, 18 May 2024 at 20:03, Mariusz Stępień ***@***.***> wrote:
As #279 <#279> says, you
sh*uldn't be injecting services into your cla**** constructors, minimal
API does not work like that. They sh*uld be in the RequestDelegate
public cla** MyModule : ICarterModule{
public void AddRoutes(IEndpointRouteBuilder app)
{
app.MapGet("/h*me", IService service => { var result = service.Foo(); return Results.Ok(result); });
}}
Yes, I understand that. But with a static abstract method, using a
dependency injected into a constructor would not even compile. So it would
prevent me from making an error and enforce correct usage. Which is good
for a library interface, no?
—
Reply to this email directly, view it on GitHub
<#338 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAZVJTWIPQE2M3W7RPJZBTZC6QYLAVCNFSM6AAAAABEZGK6J6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMJYHE3TGOBYGQ>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
I've had a play and making the interface have the abstract static method would be an aid to help this. As it's a breaking change I will do this for .NET9. For now I will add some XML docs as a pointer not to inject dependencies into classes. What it will look like: /// <summary>
/// An interface to define HTTP routes
/// </summary>
/// <remarks>Implementations of <see cref="ICarterModule"/> should not inject constructor dependencies. All dependencies should be supplied in the route <see cref="RequestDelegate"/></remarks>
public interface ICarterModule
{
/// <summary>
/// Invoked at startup to add routes to the HTTP pipeline
/// </summary>
/// <remarks>Implementations of <see cref="ICarterModule"/> should not inject constructor dependencies. All dependencies should be supplied in the route <see cref="RequestDelegate"/></remarks>
/// <param name="app">An instance of <see cref="IEndpointRouteBuilder"/></param>
static abstract void AddRoutes(IEndpointRouteBuilder app);
} |
@mariusz96 can you test the latest Carter version, it has an analyzer that warns if you have constructor dependencies 😄 |
If you mean #349 then I think it's a great solution and this issue can be closed. But I was not able to test the analyzer because though it gets installed under Dependencies\Analyzers, it throws an exception during build. Could be something on my end - maybe I just need to update something on my machine? |
Is it a Windows machine?
There’s an open issue for this unfortunately
…On Mon, 3 Jun 2024 at 21:20, Mariusz Stępień ***@***.***> wrote:
@mariusz96 <https://github.com/mariusz96> can you test the latest Carter
version, it has an analyzer that warns if you have constructor dependencies
😄
If you mean #349 <#349>
then I think it's a great solution and this issue can be closed.
But I was not able to test the analyzer because although it gets installed
under Dependencies\Analyzers, it throws an exception during build. Could be
something on my end - maybe I just need to update something on my machine?
—
Reply to this email directly, view it on GitHub
<#338 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAZVJXOLMTCRQONTAE3YH3ZFTFZJAVCNFSM6AAAAABEZGK6J6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCNBWGA2TCNRUGE>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Yes, it is and the exception is the same as in the other issue. For what it's worth, xunit analyzers that get installed when creating new unit test project in Visual Studio work fine over here and are probably "battle-tested". Maybe their setup could be stolen/leveraged somehow? |
Hi,
Being accustomed to controllers I installed Carter and ran into an issue similar to these when injecting a scoped service into a module's constructor threw an exception:
.
And I also think that this unknowingly affects many people who inject transient services (ie
MediatR
library) into a module's constructor.It appears to me that with an interface like this:
this could be completely avoided and
AddRoutes
could still be called through reflection (easy, less efficient) or a source generator (hard, as efficient as hard-coded by a dev).What do you think? Would this be a worthwhile addition?
EDIT: Turns out there's even a tutorial for this exact source generator: https://dev.to/joaofbantunes/mapping-aspnet-core-minimal-api-endpoints-with-c-source-generators-3faj.
The text was updated successfully, but these errors were encountered: