Attribute type varbinary sql server with C #

-1

This DocumentoPDF column so far was not used by the system:

HomeIamnotsurewhattodowiththis:

Thisistheerrormessage:

"já existe um DataReader aberto associado a este command que deve ser fechado primeiro"

The error already occurs even before the query execution linq:

IEnumerable<MinhaEntidade> minhaEntidade = new IEnumerable<MinhaEntidade>()
IEnumerable<MinhaEntidade> _dados = from prg in minhaEntidade.listaDados()                                                                               join servicos in _servicos on prg.IdServico equals servicos.Id into outServicos
join servicos in _servicos on prg.IdServico equals servicos.Id into outServicos
from servicos in outServicos.DefaultIfEmpty()
select new ProcessamentoRegistrosDTO
{
Id = prg.Id,
Nome = prg.Nome,
Campo1= servicos.Campo1,
Campo2= prg.Campo2
};

This is the entity:

public class MinhaEntidadeDTO
    {
        public int Id { get; set; }
        public int IdServico {get; set;}
        public string Nome { get; set; }
        public string SobreNome { get; set; }
        public string DocumentoPDF { get; set; }
    }
    
asked by anonymous 07.06.2017 / 03:57

1 answer

0

Problem solved after changing the type of data in the model: from string to byte[] .

    
07.06.2017 / 13:13