我正在尝试实现这里看到的内容:http ://www.piotrwalat.net/nhibernate-session-management-in-asp-net-web-api/但我的NhSessionManagementAttribute
.
我已经设置了断点OnActionExecuting(HttpActionContext actionContext)
来查看该函数是否被调用过——它没有被调用过。
我仔细检查了我的global.asax.cs
文件,发现我实际上正在注册ActionFilter
:
GlobalConfiguration.Configuration.Filters.Add(new NhSessionManagementAttribute());
我还用属性修饰了我的控制器类本身,以及它的操作,但无济于事:
public class ClientsController : ApiController {
static readonly ClientRepository repository = new ClientRepository();
[NhSessionManagement]
public IEnumerable<Client> GetAllClients() {
return repository.GetAll();
}
[NhSessionManagement]
public Client GetClient(int id) {
Client client = repository.Get(id);
if (client == null) {
throw new HttpResponseException(
new HttpResponseMessage(HttpStatusCode.NotFound)
);
}
return client;
}
}
为什么这个动作过滤器不会触发其中的任何事件?