EF: fixed GetUserGroupRefs

This commit is contained in:
pavelbannov 2020-01-21 13:52:04 +03:00
parent 011972be6f
commit d2bf5ece2b

View File

@ -222,7 +222,7 @@ namespace ASC.Core.Data
if (from != default)
{
q = q.Where(r => r.LastModified == from);
q = q.Where(r => r.LastModified >= from);
}
return q.Select(FromUserGroupToUserGroupRef).ToDictionary(r => r.CreateKey(), r => r);