Quellcode durchsuchen

fixed entityframework rename table name prefix bug. #84

master
Savorboard vor 6 Jahren
Ursprung
Commit
7ec498063a
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      src/DotNetCore.CAP.MySql/CAP.Options.Extensions.cs

+ 1
- 1
src/DotNetCore.CAP.MySql/CAP.Options.Extensions.cs Datei anzeigen

@@ -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)


Laden…
Abbrechen
Speichern