Method returning object name in entity

0

I have the following method:

internal ArquivoVersao GetArquivoVersao(string arquivoVersaoGuid)
    {
        using (var ctx = new TestEntities())
        {
            var versao = (from ver in ctx.ARQUIVO_VERSAO
                          where ver.ARQUIVO_VERSAO_GUID == arquivoVersaoGuid
                          select new ArquivoVersao()
                          {
                              ARQUIVO_GUID = ver.ARQUIVO_GUID,
                              ARQUIVO = ver.ARQUIVO,
                              USUARIO_PESSOA_GUID = ver.USUARIO_PESSOA_GUID,
                              TAMANHO = ver.TAMANHO,
                              DATAHORA = ver.DATAHORA,
                              ARQUIVO_VERSAO_GUID = ver.ARQUIVO_VERSAO_GUID
                          }).FirstOrDefault();
            return versao;
        }
    }

I want to show the result, when calling this method it shows the object, wanted to display a value on the screen. I sent a .ToString () but it will not.

    
asked by anonymous 06.02.2015 / 14:35

1 answer

0

You are trying to a .ToString () on the Object.

Try to do so

ARQUIVOdal.GetArquivoVersao.NOME_DA_PROPRIEDADE_QUE_QUER_EXIBIR.ToString();
    
06.02.2015 / 14:52