Posts by André • 1 point
3 posts
-
0
votes0
answers13
viewsQ: Error dehydrating Property value for Entities.Mesa.Mesastatus
I mapped the classes Mesa and Mesastatus with Fluent Nhibernate, according to the code below: CLASS public class Mesa { public virtual int MesaId { get; set; } public virtual int Numero { get; set;…
-
1
votes0
answers46
viewsQ: Where can I get a VB6 IDE?
Where can I find a VB6 IDE? I need an IDE that I can debug a legacy application in VB6. I cannot migrate to VB.NET, because it is an application that is running in the company.…
-
4
votes1
answer68
viewsQ: Difference between query with and without Inner Join
What is the difference between doing the two queries below, one with and the other without INNER JOIN? What is the most appropriate? SELECT p.Descricao as Produto, c.Descricao as Categoria FROM…