- Timestamp:
- 12/07/17 14:41:47 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/Daos/ResourcePermissionDao.cs
r15497 r15500 34 34 } 35 35 36 public IEnumerable<Guid> GetBy GrantedUserId(IEnumerable<Guid> grantedUserId) {37 string paramIds = string.Join(",", grantedUserId.Select(x => string.Format("'{0}'", x)));36 public IEnumerable<Guid> GetByUserAndGroupIds(IEnumerable<Guid> userAndGroupIds) { 37 string paramIds = string.Join(",", userAndGroupIds.Select(x => string.Format("'{0}'", x))); 38 38 if (!string.IsNullOrWhiteSpace(paramIds)) { 39 39 string query = string.Format(GetGrantedResourcesQuery, paramIds);
Note: See TracChangeset
for help on using the changeset viewer.