标签: c# asp.net-mvc binding guid
我们正在使用MiniProfiler,并且我注意到在调用OnActionExecuting之前,所需的时间在75到150毫秒之间,操作就是:
public ActionResult Index(Guid guid, string fileName) { }
当我将其更改为以下时,它降至4毫秒。
public ActionResult Index(string guid, string fileName) { }
有没有其他人在使用Guid绑定的Mvc中遇到这些性能问题?