3

我们正在使用 MiniProfiler,我注意到在调用 OnActionExecuting 之前所花费的时间在 75 到 150 毫秒之间,操作是这样的:

public ActionResult Index(Guid guid, string fileName)
{
}

当我将其更改为以下时,它下降到 4ms。

public ActionResult Index(string guid, string fileName)
{
}

在 Mvc 中是否有其他人在使用 Guid 绑定时遇到过这些性能问题?

4

0 回答 0