Posts by NereuJunior • 174 points
3 posts
-
4
votes3
answers119
viewsA: Invalidcharactererror
Look at this Documentation, has Encode and Decode for Base64 with Unicode characters : function b64EncodeUnicode(str) { return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g, function…
javascriptanswered NereuJunior 174 -
0
votes1
answer164
viewsA: Entity Framework Contexts Error
I had this problem a few years ago. As I recall, the solution was to do "mapping" directly in Dbcontext, using the Onmodelcreating method. For some reason, EF cannot do this when "mapping" is in an…
-
1
votes1
answer37
viewsA: Problem with SELECT
I believe that using a sub-base with NOT EXISTS, you can solve this. SELECT t.nome, count(t.id) FROM Partidas p WHERE NOT EXISTS (SELECT NULL From Time t WHERE t.id = p.codTimeCasa OR t.id =…
sqlanswered NereuJunior 174