mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-14 17:18:32 -05:00
[misc bug fixes]
properly hide broadcast failure messages if ignore connection lost is turned on fix concurent issue for update stats history that happened with new event processing make get/set additional property thread safe add ellipse to truncated chat messages on home
This commit is contained in:
17
SharedLibraryCore/Interfaces/IDatabaseContextFactory.cs
Normal file
17
SharedLibraryCore/Interfaces/IDatabaseContextFactory.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using SharedLibraryCore.Database;
|
||||
|
||||
namespace SharedLibraryCore.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// describes the capabilities of the database context factory
|
||||
/// </summary>
|
||||
public interface IDatabaseContextFactory
|
||||
{
|
||||
/// <summary>
|
||||
/// create or retrieves an existing database context instance
|
||||
/// </summary>
|
||||
/// <param name="enableTracking">indicated if entity tracking should be enabled</param>
|
||||
/// <returns>database context instance</returns>
|
||||
DatabaseContext CreateContext(bool? enableTracking = true);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user