Posts by Leonardo Souza • 34 points
3 posts
-
0
votes1
answer96
viewsA: Nunit error log repeating exceptions - Multiple failures or warnings in test
I know it’s been a while since the question was asked but I found the topic interesting. I believe the error must be because of the Selenium Web Driver (+ Nunit). I made a simple implementation of a…
-
1
votes1
answer599
viewsA: Create a list with selected table values with checkbox
Whereas your model looks like this: public class EnviarLoteViewModel { public int[] Ids { get; set; } } This javascript will make the post. $(document).ready(function () {…
-
0
votes3
answers1813
viewsA: How to map 1:N (one to many) in Dapper?
One way that keeps the code simpler to understand, because it doesn’t use mapping, is this, using dynamic: using Dapper; using System.Collections.Generic; using System.Data.SqlClient; namespace…