Posts by Ricardo Cardoso • 53 points
3 posts
-
2
votes2
answers248
viewsA: Visual Studio - Managing Locally Registered Dll Publication of Homologation and Production Environment
Actually the problem was related to Dll platform and the Application Pool. I registered the Dll in the folder system32 instead of Syswow64 I changed the Pool to allow 32-bit applications But I also…
-
1
votes2
answers248
viewsQ: Visual Studio - Managing Locally Registered Dll Publication of Homologation and Production Environment
I am working with a Dll from Itaú bank(itauCripto.dll), the documentation requires it to be registered locally on the machine running the application. So I put the Dll inside the folder %systemroot%…
-
2
votes0
answers79
viewsQ: Unit of Work - Error: "Attaching an Entity of type 'Entityb' failed because Another Entity of the same type already has the same Primary key value"
These are my example classes: public class EntityA { public string Id { get; set; } public decimal AproveValue { get; set; } public string EntityB_Id { get; set; } public virtual EntityB EntityBs {…