public List <Tuple <string, int> > GetArtifactsWithJustOneExpertForRepository(int repositoryId)
        {
            var artifacts = Artifacts.Include(a => a.DeveloperExpertises).Where(a => a.RepositoryId == repositoryId && a.DeveloperExpertises.Count < 2).AsNoTracking();

            // LINQ to Entities does not support constructors with parameters, therefore the intermediate anonymous type
            // exists to show LINQ to Entities which attributes are required from the server
            return(artifacts
                   .Select(artifact => new { artifact.Name, artifact.ArtifactId }).AsEnumerable()
                   .Select(artifact => new Tuple <string, int>(artifact.Name, artifact.ArtifactId)).ToList());
        }
Ejemplo n.º 2
0
        public List <Tuple <string, int> > GetArtifactsWithJustOneExpertForRepository(int repositoryId)
        {
            var artifacts = Artifacts.Include(a => a.DeveloperExpertises).Where(a => a.RepositoryId == repositoryId && a.DeveloperExpertises.Count < 2).AsNoTracking();

            return(artifacts.Select(artifact => new Tuple <string, int>(artifact.Name, artifact.ArtifactId)).ToList());
        }