using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Text; namespace Pole.Orleans.Provider.EntityframeworkCore { public interface IGrainStateEntryConfigurator where TContext : DbContext where TEntity : class { void ConfigureSaveEntry(ConfigureSaveEntryContext context); } }