有人能帮助在Linq到NHibernate 3.2中执行以下SQL吗?
select act.Name from Activity act
where 1 =
(
select top 1 p.Allow
from Permissions p inner join Operations o on p.OperationId = o.OperationId
inner join Users u on p.UserId = u.UserId
where p.EntitySecurityKey = act.ActivityId and o.Name = '/operation'
and u.Name = 'user'
order by p.Level desc, p.Allow asc
)
这在SQL中运行得很好,但我无法理解如何使用Linq来实现等效功能。
这里不需要相关的子查询。外部查询所做的只是在Allow == true
时获取EntitySecurityKey.Name
。您可以在查询后使用简单的if
语句来执行该逻辑。
private string GetEntitySecurityKeyNameIfAllowed(ISession session, string operationName, string userName)
{
var result = session.Query<Permission>()
.Where(p => p.Operation.Name == operationName
&& p.User.Name == userName)
.OrderByDescending(p => p.Level)
.ThenBy(p => p.Allow)
.Select(p => new
{
p.Allow,
p.EntitySecurityKey.Name
})
.FirstOrDefault();
return result != null && result.Allow
? result.Name
: null;
}