Posts by AndersonDeA • 76 points
3 posts
-
1
votes1
answer335
viewsA: Why use MVVM in a WPF + EF + C#
You are not required to follow patterns, but it is good practice to follow them. MVVM, nothing else is a standard with the same purpose of MVC, serves to separate responsibilities in layers.…
-
4
votes1
answer310
viewsQ: Abstract class and C#properties?
Hello, everyone! Next, I created an abstract class called Tables, where classes of basic tables of the system will inherit from this abstract class. As Neighborhood, City, States, category, etc..…
-
1
votes2
answers234
viewsA: Adding Text Box and Writing to Database. (with C#, entityframework 6.1.3)
I believe you are doubtful in recovering the form data. Try the code below. Template: public ActionResult Gravar() { string[] chaves = Request.QueryString.AllKeys; Dictionary parametros = new…