blob: 00646ac13e07eed549eea8cb6af73395816d6a97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using System.Data.Entity;
namespace Tango.BL.Builders
{
public class RolesCollectionBuilder : EntityCollectionBuilderBase<Role, RolesCollectionBuilder>
{
public RolesCollectionBuilder(ObservablesContext context) : base(context)
{
}
public virtual RolesCollectionBuilder WithPermission()
{
return AddQueryStep(1, (query) =>
{
return query
.Include(x => x.RolesPermissions)
.Include(x => x.RolesPermissions.Select(y => y.Permission));
});
}
}
}
|