- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在管理 asp 网络核心应用程序上重新开发新闻系统。我们可以发布有关用户或公司的附加信息,并且这些信息具有权限(允许用户查看或不允许查看其功能)。
我正在使用 Entity Framework Core,我遇到了一些性能问题。我是学生,我的代码对你来说肯定很糟糕 ^^
请看:
我试图删除 ToList(),但它抛出了一个错误,而不是另一个线程的另一个请求...我的 DbContext 生命周期是 transient 的
IQueryable<AdditionalInformation> query = _context
.AdditionalInformations
// Company is the company targeted by this information (can be null if it's an information about a user)
.Include(u => u.Company)
// SSTRNUser is the user targeted by this information (can be null if it's company additionnal information
.Include(u => u.SSTRNUser)
.Include(u => u.Creator)
.Include(u => u.Documents)
.ToList()
.AsQueryable<AdditionalInformation>();
var user = _context.Users
.Include(u => u.Function)
.FirstOrDefault(u => u .UserName == HttpContext.User.Identity.Name);
var all = new List<Predicate<AdditionalInformation>>();
// These persons must have the vision only on the companies they work
string[] specificFunctions = new string[] { "AS.ST","I.ST","PS.T","CONS.ALL" };
if (specificFunctions.Contains(user.Function.Code))
{
if(user.Function.Code == "AS.ST")
{
user = _context.Users
.Include(u => u.Function)
.Include(u => u.EntreprisesAsAst)
.FirstOrDefault(u => u.UserName == HttpContext.User.Identity.Name);
// EntreprisesAsAst is the mapping table between the employee, the company and his planning on each companies he works
// For others Function, it's another tables
Predicate<AdditionalInformation> functionWorkerPredicate = c => query.Any(t => c.Company != null && c.Rights.Any(r => r == "AS.ST") && user.EntreprisesAsAst.Any(e => e.EntrepriseId == c.CompanyId));
all.Add(functionWorkerPredicate);
}
else if(user.Function.Code == "I.ST")
{
user = _context.Users
.Include(u => u.Function)
.Include(u => u.EntreprisesAsInf)
.FirstOrDefault(u => u.UserName == HttpContext.User.Identity.Name);
Predicate<AdditionalInformation> functionWorkerPredicate = c => query.Any(t => c.Company != null && c.Rights.Any(r => r == "I.ST") && user.EntreprisesAsInf.Any(e => e.EntrepriseId == c.CompanyId));
all.Add(functionWorkerPredicate);
}
else if(user.Function.Code == "PS.T")
{
user = _context.Users
.Include(u => u.Function)
.Include(u => u.EntreprisesAsPsy)
.FirstOrDefault(u => u.UserName == HttpContext.User.Identity.Name);
Predicate<AdditionalInformation> functionWorkerPredicate = c => query.Any(t => c.Company != null && c.Rights.Any(r => r == "PS.T") && user.EntreprisesAsPsy.Any(e=>e.EntrepriseId == c.CompanyId));
all.Add(functionWorkerPredicate);
}
else if(user.Function.Code == "CONS.ALL")
{
user = _context.Users
.Include(u => u.Function)
.Include(u => u.EntreprisesAsCon)
.FirstOrDefault(u => u.UserName == HttpContext.User.Identity.Name);
Predicate<AdditionalInformation> functionWorkerPredicate = c => query.Any(t => c.Company != null && c.Rights.Any(r => r == "CONS.ALL") && user.EntreprisesAsCon.Any(e => e.EntrepriseId == c.CompanyId));
all.Add(functionWorkerPredicate);
}
}
// this function (ADH = 'adherent' <==> client in France)
else if (user.Function.Code == "ADH")
{
// He must see only the information about his company when the client is allowed to see their
Predicate<AdditionalInformation> functionADHPredicate = c => query.Any(t => c.Company != null && c.CompanyId == user.CompanyId && c.Rights.Any(r => r == "ADH"));
all.Add(functionADHPredicate);
}
// Else there's other function (managers etc), and they're not scoped to a company (instead of specificFunctions)
else
{
Predicate<AdditionalInformation> functionPredicate = c => query.Any(t => c.Company != null && c.Rights.Any(r => r == user.Function.Code));
all.Add(functionPredicate);
}
// There's also 4 groups like director group, administrative concil etc
if (await _userManager.IsInRoleAsync(user, "CODIR"))
{
Predicate<AdditionalInformation> CODIRPredicate = c => query.Any(t => c.Rights.Any(r => r == "CODIR"));
all.Add(CODIRPredicate);
}
if (await _userManager.IsInRoleAsync(user, "COMEX"))
{
Predicate<AdditionalInformation> COMEXPredicate = c => query.Any(t => c.Rights.Any(r => r == "COMEX"));
all.Add(COMEXPredicate);
}
if (await _userManager.IsInRoleAsync(user, "CSE"))
{
Predicate<AdditionalInformation> CSEPredicate = c => query.Any(t => c.Rights.Any(r => r == "CSE"));
all.Add(CSEPredicate);
}
if (await _userManager.IsInRoleAsync(user, "CA"))
{
Predicate<AdditionalInformation> CSEPredicate = c => query.Any(t => c.Rights.Any(r => r == "CA"));
all.Add(CSEPredicate);
}
// On informations about users, we can check "Targeted person", and the person can see informations about him
Predicate<AdditionalInformation> TargetPredicate = c => query.Any(t => c.SSTRNUser != null && c.SSTRNUserId == user.Id && c.Rights.Any(r => r == "OWNER"));
all.Add(TargetPredicate);
// The creator of the information can read the informations he posts..
Predicate<AdditionalInformation> OwnerPredicate = c => query.Any(t => c.Creator.Id == user.Id);
all.Add(OwnerPredicate);
// The director and the assistant can read all informations
if (user.Function.Code == "DIR" || user.Function.Code == "AS.DIR")
{
all.Clear();
Predicate<AdditionalInformation> ADMINPredicate = c => query.Any(t => c.AdditionalInformationId != null);
all.Add(ADMINPredicate);
}
var items = query.Where(a => PredicateExtensions.OrAll(all)(a)).ToList();
return Ok(new
{
paging = new
{
pageNumber = pageNumber,
pageSize = pageSize,
totalItems = items.Count(),
pageCount = Math.Ceiling((double)items.Count / pageSize)
},
additionalInformations = _mapper.Map<List<DisplayAdditionalInformationViewModel>>(items.OrderByDescending(i => i.LastModificationDate).Skip(pageSize * (pageNumber - 1)).Take(pageSize))
});
public static class PredicateExtensions
{
public static Predicate<T> Or<T>(this Predicate<T> p1, Predicate<T> p2)
{
return obj => p1(obj) || p2(obj);
}
public static Predicate<T> And<T>(this Predicate<T> p1, Predicate<T> p2)
{
return obj => p1(obj) && p2(obj);
}
public static Predicate<T> False<T>() { return obj => false; }
public static Predicate<T> True<T>() { return obj => true; }
public static Predicate<T> OrAll<T>(IEnumerable<Predicate<T>> conditions)
{
Predicate<T> result = PredicateExtensions.False<T>();
foreach (Predicate<T> cond in conditions)
result = result.Or<T>(cond);
return result;
}
public static Predicate<T> AndAll<T>(IEnumerable<Predicate<T>> conditions)
{
Predicate<T> result = PredicateExtensions.True<T>();
foreach (Predicate<T> cond in conditions)
result = result.And<T>(cond);
return result;
}
}
AddiInfo 类:
public class AdditionalInformation{
...
private static readonly char delimiter = '¤';
private string _rights;
[NotMapped]
public string[] Rights {
get {
if (string.IsNullOrEmpty(_rights)) {
return new List<string>().ToArray();
} else {
return _rights.Split(delimiter);
}
}
set
{
_rights = string.Join($"{delimiter}", value);
}
}
}
谢谢
最佳答案
关于此代码的一些事情(无顺序):
.ToList().AsQueryable<AdditionalInformation>()
永远不会做您想做的事情,即在数据库上运行查询。 ToList()
将有效地将所有数据加载到内存中,然后一切都发生在内存中的数据上。这可能是此处性能问题的根源。PredicateExtensions
在实际函数类型上工作,而不是在表达式上工作,因此您在那里构建的内容无法在数据库上执行(这意味着它将始终在内存中运行,这与 ToList()
具有相同的效果)。specificFunctions
这里实际上不需要数组,因为您无论如何都要与每个单独的项目进行比较。UserManager.IsInRoleAsync
每次调用将查询数据库两次,因此如果您想与多个角色进行比较,更好的办法是加载所有角色一次。DIR
和 AS.DIR
清除所有先前构造的谓词,丢弃所有已完成的工作。因此,最好提前执行此操作并将逻辑短路。关于c# - 性能改进,谓词系统 linq 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57179942/
我正在开发一个包含 TreeViewer 的 RCP 应用程序,我想在其上激活多个应与“OR”谓词配合使用的过滤器,例如: A |--B |--|--redColor |--|--blueColor
我的问题是关于 enable_if通常标准库中的谓词,但我将在迭代器类型的上下文中构建它,因为这是我目前遇到此问题的地方。 我有一个自定义迭代器类型 It , 这样 std::iterator_tra
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 4年前关闭。 Improve thi
我需要使用自然数为 2 的幂创建一个 Prolog 谓词。 自然数是:0、s(0)、s(s(0)) 等等。 例如: ?- pow2(s(0),P). P = s(s(0)); false. ?- po
我正在尝试创建一个 NSPredicate 来查找在特定日期范围内包含“ session ”的“项目”。我一开始尝试过这个: [NSPredicate predicateWithFormat:@"AN
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
在JOOQ中,我可以编写如下SQL这样的代码吗? 我不知道如何编写具有多个字段的in谓词。 select some_value from t1 where (t1.id1, t1.id2) i
我正在用 PROLOG 编写一个数独求解器。我希望求解器能够处理所有可能大小的数独,因此我自然需要构造采用可变数量参数的谓词。 (例如在数独中构建“ block ”。) 如何构造或模拟具有可变数量参数
我有一个包含一些 id 的列表,我希望我的 ebean 查询排除这些 id。所以基本上我需要在 ebean 中使用“not in”谓词,就像 sql 一样,但遗憾的是找不到。还有其他方法可以实现这一目
我正在构建一个通用接口(interface)以从类中公开选定的字符串属性,然后我想在每个字段中搜索文本,以检查它是否匹配。 这是我的 IFieldExposer接口(interface): using
我将 Spring Boot 与 Spring JPA 和 Specification Executor 结合使用。我的规范/谓词组合成功地在我的类中搜索了简单的属性。但是,我在搜索其中的对象时遇到了
如果下面的 last_name 为 NULL,它会跳过该列的 WHERE 比较以提高性能吗? AND (last_name IS NULL OR sp.last_name LIKE CONCAT('%
出于好奇:如果我有一个接受多个参数(通常为 1 或 2)并返回 3 个值中的 1 个(而不是 bool 值 true 或 false)的类运算符(或函数等),它是否仍应被调用谓词?还是模糊逻辑的特例?
是否可以创建一个采用装箱值类型并返回该值类型是否等于该类型默认值的方法? 所以我想创建一个具有以下签名的方法: bool IsDefault(object boxedValueType); 注意:当
let selectedConsoles = ["Xbox", "Playstation 4"] let players = realm.objects(Person).filter("console
我正在尝试根据用户搜索文本过滤来自核心数据的结果,但效果很好。我正在努力做到有几个关键术语可以返回特定结果。 我有一个Colour 实体,它与另一个实体ProjectColour 具有对多 关系。 P
std::vector lines; typedef std::vector::iterator iterator_t; iterator_t eventLine = std::find_if(lin
我想在一个列表中找到一个元素的索引,该列表匹配某个谓词,有没有比以下更好的方法: var index = list.IndexOf(list.Find(predicate)); ? 最佳答案 你在找
我正在使用缺少 findall 的高阶 Prolog 变体. 还有一个关于实现我们自己的问题 findall这里:Getting list of solutions in Prolog . 低效的实现
我正在使用 Breeze 过滤客户端请求的数据。我的代码看起来有点像这样: 客户端 - 创建过滤谓词 var predicates = []; var criteriaPredicate = null
我是一名优秀的程序员,十分优秀!