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.