Posts by Thamires Cunha • 93 points
3 posts
-
3
votes1
answer1291
viewsQ: The method or Operation is not implemented error
When I will add a record on my Include screen, I get this error. What can it be? Service public void AddItem(Test item) { var codigos = this.context.Tests.SingleOrDefault(x => x.Codigo ==…
-
3
votes3
answers1160
viewsQ: Validation to check if the record is being used before deleting
The MVC of my project is stuccoed in services, controllers, Views and models. My deletion screen works, but when the record is used in other tables it displays this error. The DELETE statement…
-
3
votes1
answer196
viewsQ: How to call another class column name in Webgrid MVC
I have this view Listar.cshtml @model IEnumerable<ODM> @{ var idGrid = "grid" + this.ViewBag.IdParameters ?? string.Empty; var grid = new IBM.Web.Helpers.WebGrid(id: idGrid, rowsPerPage:…