I would like to add one more condition in my ternary operator. Is it possible for more than two conditions? Or is there another possibility?
I need to insert the ProductCatalogDigital property, which is of the BasicLongDTO type.
Currently it looks like this:
public BasicoLongDTO Produto => ProdutoLivro != null ? new BasicoLongDTO(ProdutoSolucao.Codigo, ProdutoSolucao.Nome) : new BasicoLongDTO(ProdutoBibliotecaDigital.Codigo, ProdutoBibliotecaDigital.Nome);