比如下面的扩展方法,如果命名空间改为 `IEndpointRouteBuilder` 所使用的 `Microsoft.AspNetCore.Routing`,调用时会更方便,不需要另外添加命名空间引用,智能感知直接就能出来 ```cs namespace Cnblogs.Architecture.Ddd.EventBus.Dapr; public static IEndpointConventionBuilder Subscribe<TEvent>(this IEndpointRouteBuilder builder) where TEvent : IntegrationEvent { } ```