Explorar el Código

fixed entityframework rename table name prefix bug. #84

master
Savorboard hace 6 años
padre
commit
7ec498063a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/DotNetCore.CAP.MySql/CAP.Options.Extensions.cs

+ 1
- 1
src/DotNetCore.CAP.MySql/CAP.Options.Extensions.cs Ver fichero

@@ -25,7 +25,7 @@ namespace Microsoft.Extensions.DependencyInjection
public static CapOptions UseEntityFramework<TContext>(this CapOptions options)
where TContext : DbContext
{
return options.UseEntityFramework<TContext>(opt => { opt.DbContextType = typeof(TContext); });
return options.UseEntityFramework<TContext>(opt => { });
}

public static CapOptions UseEntityFramework<TContext>(this CapOptions options, Action<EFOptions> configure)


Cargando…
Cancelar
Guardar