Posts by Murilo Eduardo • 51 points
4 posts
-
0
votes2
answers228
viewsA: How to delete a commit?
You can try git rebase -i -p HEAD~2 where ~2 is the last two commits. git log --to list the commits. commit 0a6c84980 (HEAD -> hotfix/1, origin/hotfix/1) Author: Murilo <[email protected]>…
gitanswered Murilo Eduardo 51 -
0
votes1
answer26
viewsA: Search from a property in a list of a certain class
Good morning! I did it this way, I used the Any to access the list, and the Contains to search within it : return await _context.jogos.AsQueryable() .Where(x => x.Titulo.Contains("nome do jogo")…
-
-1
votes1
answer26
viewsQ: Search from a property in a list of a certain class
I am trying to filter the results from a property of a class, within a list. Today I have the following structure : public class Jogo { public int Id { get; set; } public string Titulo { get; set; }…
-
5
votes1
answer1166
viewsQ: Difficulty navigating between views using Ionic Framework
recently start in Ionic, and I believe that as a beginner doubt, I’m having some questions about opening pages, ie, browse between my views in case there are 3 would be them, the home, Pag1, pag2,…