Most voted "linq-to-entities" questions
LINQ to Entities provides LINQ (Integrated Language Query) support that allows developers to write queries in the Entity Framework conceptual model using Visual Basic or Visual C#.
Learn more…52 questions
Sort by count of
-
-1
votes2
answers94
viewsdoubt with Linq to sql
Guys, I got two tables, sale and blindfolds: Sale: [Table("venda")] public class VendaModel { [Key] [Required] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int id_venda { get; set; }…
-
-1
votes3
answers97
viewsSearch By Entity with EF
I’m new to the business and I’m on my first steps. I am trying to create a system of financial consolidation. I need it to return me the total expenses of a certain Rubric. using System; using…