Posts by user7845 • 58 points
2 posts
-
1
votes1
answer123
viewsA: Perform a Get that takes a List<long> ids as parameters
In your Repository do the following Return: public ICollection<MinhaModel> GetListIds(IList<long> ids) { return Db.MinhaModel.AsNoTracking().Where(p => ids.Any(x => x ==…
-
3
votes1
answer79
viewsQ: Doubt about how to register
Good afternoon guys, good I’m new here, so I apologize for anything! My question is: I have an equipment table, a software table and an associative equipment-software. The ratio was (Equipment) 1 N…