Posts by Moisesello • 41 points
5 posts
-
0
votes2
answers598
viewsQ: Entity Framework - When editing, "db. Entry(Category) fails. State = Entitystate.Modified;"
I own a "Category" Entity, which contains id, name, created and updated. I am using Code First. This is my model: public class Category { public int CategoryId { get; set; } public string Name {…
-
1
votes1
answer103
viewsQ: ASP.NET MVC How to Manipulate Table Users Using Code First
I’m studying MVC ASP.NET code first. I’m a beginner and I have a question probably basic. When starting a project, it already creates a basic application, including the table User. I happen to be…
-
1
votes1
answer103
viewsQ: Ruby on Rails, form_for with 3 levels
I am trying to create comment, through the form_for of 3 levels: Article > Item > Comment Controller: def new @comment = Comment.new end I have tried several ways, and they all fail. Look what…
ruby-on-railsasked Moisesello 41 -
0
votes2
answers245
viewsA: Create New Reporitory - Git / Bitbucket. Git (Could not read from remote Repository)
I think it should be some bug, of those that happen for no reason. I gave "$ git init" and solved it. I made the commands again and it worked. Personal thank you!
-
1
votes2
answers245
viewsQ: Create New Reporitory - Git / Bitbucket. Git (Could not read from remote Repository)
I’m doing the Ruby on Rails tutorial and I’m catching on to a problem. I’ve already made a repository hello_app (cap a), and now I’m trying to do the toy_app (cap two). This is the step by step…