Added stores for groups, group chatters and group permissions. Fixed some logging text.
This commit is contained in:
@@ -18,7 +18,8 @@ namespace HermesSocketServer.Store.Internal
|
||||
|
||||
public GroupSaveSqlGenerator(IDictionary<string, string> columnsToProperties, IDictionary<string, string> columnTypes, Serilog.ILogger logger)
|
||||
{
|
||||
_columnPropertyRelations = columnsToProperties.ToDictionary(p => p.Key, p => typeof(T).GetProperty(p.Value));
|
||||
var type = typeof(T);
|
||||
_columnPropertyRelations = columnsToProperties.ToDictionary(p => p.Key, p => type.GetProperty(p.Value));
|
||||
_columnTypes = columnTypes;
|
||||
_logger = logger;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user