Posts by Renato Sucoski Siqueira • 11 points
3 posts
-
0
votes1
answer19
viewsA: Mongodb driver C# Index not used
I got the answer you solved here Since _id is denied it scans, then ideally create the Update/_id index db.estr.createIndex({Atualizar:-1, _id:1}) This way it looks for Update and scans only those…
-
1
votes1
answer19
viewsQ: Mongodb driver C# Index not used
In Mongodb: db.estr.createIndex({_id:1, Atualizar:-1}); In C# var a = await db.dados.Distinct(x=>x.codigo).toListAsync(); var b = await db.estr.find(x=>!a.contains(x._id) &&…
-
0
votes1
answer1350
viewsQ: Angular 6 Special characters (Accent and cedilla)
Good night, Does anyone know how to solve the problem with Angular 6 accentuation? import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html',…