Posts by Gabriel Francisco • 11 points
3 posts
-
0
votes1
answer33
viewsA: EF: How to return only a few columns from the database?
Problem solved: I just changed the Task<IEnumerable<KeyType>> for Task<IEnumerable<dynamic>> and changed the signature on the interface it implements.…
-
0
votes1
answer33
viewsQ: EF: How to return only a few columns from the database?
I’m having trouble returning a collection of objects from the database with just a few columns selected. I searched several solutions on the web and the vast majority presented the solution below,…
-
1
votes0
answers35
viewsQ: Problem sending View information to Controller
I’m doing a simple CRUD on ASP.Net MVC and implemented a search box to search for a product in the database. But when I click search, the Viewmodel item passed in the Taghelpers is not sent to the…