yavsc/Yavsc/Helpers/WorkflowHelpers.cs

24 lines
662 B
C#

8 years ago
namespace Yavsc.Helpers
{
using System.Collections.Generic;
using System.Linq;
using Microsoft.Data.Entity;
8 years ago
using Models.Workflow;
using Yavsc.Models;
public static class WorkflowHelpers
{
public static List<PerformerProfile> ListPerformers(this ApplicationDbContext context, string actCode)
{
return context.Performers
.Include(p=>p.Activity)
.Include(p=>p.Performer)
.Include(p=>p.Performer.Posts)
.Include(p=>p.Performer.Devices)
.Where(p => p.Active && p.Activity.Any(u=>u.DoesCode==actCode)).OrderBy( x => x.Rate ).ToList();
}
}
}