Posts by RONALDO VIPER • 41 points
5 posts
-
0
votes1
answer146
viewsA: Entityframework problem - An Entity Object cannot be referenced by Multiple instances of Ientitychangetracker
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.Webcontrols; namespace Refeitorio { public partial class Dish :…
-
0
votes1
answer146
viewsQ: Entityframework problem - An Entity Object cannot be referenced by Multiple instances of Ientitychangetracker
I have a project where a dropdownlist is loaded with the following instructions: var lista = entities.prato.OrderBy(x => x.nome).ToList(); combo.DataTextField = "nome"; combo.DataValueField =…
-
1
votes1
answer349
viewsQ: Error: 'could not read Username for 'https://github.com' while pushing
I have an ASP.NET versioned project on Github and while trying to do one push the following error is returned: fatal: could not read Username for 'https://github.com': terminal prompts disabled Does…
-
1
votes1
answer174
viewsQ: ASP.NET Entityfraord - Grid with Pagination
I am building an Asp.net application using Entity framwork. To load the grid I use the following instructions: var lista = entity.Usuario.ToList().OrderBy(x=>x.nome); grid.DataSource = lista;…
-
2
votes0
answers41
viewsQ: Asp.net with Github
I have some time of experience with versioning GITHUB with java, always worked efficiently between teams. I’m with an ASP.NET project based on Webforms, and I’m trying to get in touch with GITHUB. I…