Posts by Matheus Daumas • 37 points
4 posts
-
0
votes1
answer254
viewsQ: Change only edited columns
In an application I am developing, when trying to update only the fields that were changed the Entity Framework is also changing the fields that do not need. Repository code: public void Update(T…
-
1
votes1
answer392
viewsQ: Simpleinjector: The Configuration is invalid. The type is directly or Indirectly Depending on itself
I have the following problem when applying the Simpleinjector container in a simple application: The configuration is invalid. The type BookAppService is directly or indirectly depending on itself.…
-
0
votes2
answers184
viewsQ: EF - Navigating through Icollection
I have the following class in an application for C# practice purposes with Entityframework: public class Livro { public Livro() { Autor = new HashSet<Autor>(); } public int Id { get; set; }…
-
2
votes0
answers57
viewsQ: Formula Optimization
Could you help me find a way to optimize the formula below? The spreadsheet has more than 125 thousand lines with this formula in a 4 columns and is generating a lot of slowness to process the…