40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc.Filters;
|
|
using Raven.Client.Documents.Session;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sample
|
|
{
|
|
/// <summary>
|
|
/// Razor Pages filter that saves any changes after the action completes.
|
|
/// </summary>
|
|
public class RavenSaveChangesAsyncFilter : IAsyncPageFilter
|
|
{
|
|
private readonly IAsyncDocumentSession dbSession;
|
|
|
|
public RavenSaveChangesAsyncFilter(IAsyncDocumentSession dbSession)
|
|
{
|
|
this.dbSession = dbSession;
|
|
}
|
|
|
|
public async Task OnPageHandlerSelectionAsync(PageHandlerSelectedContext context)
|
|
{
|
|
await Task.CompletedTask;
|
|
}
|
|
|
|
public async Task OnPageHandlerExecutionAsync(PageHandlerExecutingContext context, PageHandlerExecutionDelegate next)
|
|
{
|
|
var result = await next.Invoke();
|
|
|
|
// If there was no exception, and the action wasn't cancelled, save changes.
|
|
if (result.Exception == null && !result.Canceled)
|
|
{
|
|
await this.dbSession.SaveChangesAsync();
|
|
}
|
|
}
|
|
}
|
|
}
|