Miguel Moura

Results 30 comments of Miguel Moura

That is bad news ... Do you think it would be possible, in MVC5, to plug a TranslationProvider?

I think maybe the best option would be to pick everything that is not supported in MVC5 attribute routing and create a package AttributteRouting.MVC5. As far as I found out...

Yes, I also tried: ``` @Url.Action("unlock", "user", new { area = "cms", culture = "en", slug = "johnus" }) ``` Or: ``` @Url.Action("unlock", "user", new { area = "cms", culture...

By the way, my routing configuration is: ``` RouteTable.Routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); RouteTable.Routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.([iI][cC][oO]|[gG][iI][fF])(/.*)?" }); RouteTable.Routes.MapAttributeRoutes(x => { x.AddRoutesFromAssemblyOf(); x.ConstrainTranslatedRoutesByCurrentUICulture = true; x.InlineRouteConstraints.Add("notetype", typeof(EnumValueRouteConstraint)); x.UseLowercaseRoutes = true; x.UseRouteHandler(() =>...

How is this feature going? Is already available? What about the following: ``` A.Configure() .Fill(x => x.Text) .WithRandom(new String[] { "Hello", "How are you?", "Bye" }) .Distinct(); var messages =...

Maybe an attribute named YamlStyle that would accept the enum with values Flow, Block or Any which would be the default value as in MappingStyle?

And could you add an option to define the loggerName? At the moment is always "Agatha.ServiceLayer.RequestProcessor" due to "typeof(RequestProcessor)" There could be something like (LoggerName to be added at the...

"i think the correct solution is to make those virtual OnHandlerException methods no-ops, because we need the other log statements in the other catch blocks because they catch more than...

> Hello @mdmoura 👋, Just checking in to see if you had a chance to review the documentation and verify your token permissions as per my previous comment. If you're...

@priya-kinthali Really sorry for the delayed answer but I was working in a project and couldn't find the time. So I got back to this yesterday and after a while...