Posts by Lucas Pereira • 99 points
2 posts
-
5
votes1
answer699
viewsQ: How does MVVM actually work?
How does MVVM actually work? What are the responsibilities of Viewmodel and Model? I’m implementing a standard project MVVM some time ago, but now some questions have arisen about the. Where to…
-
4
votes2
answers1277
viewsQ: How to store a List<Object> in a database?
I am working on a project in C# where I have the following situation. I have a class that represents player: class Player { int ID; string Name; } and another representing a team: class Team { int…