Most voted "dbset" questions
Dbset class represents a set of entities that is used to create, read, update and delete operations. The generic version of Dbset (Dbset <tentity>) may be used when the type of entity is not known at compile time.</tentity>
Learn more…3 questions
Sort by count of
-
3
votes1
answer441
viewsGeneric Dbcontext Dbset Method with Entity Framework
I have an application in C# using Entity Framework. All of mine DbSet of DbContext, I extend them to have a default search for the grid, below example of the method. public static GridDTO…
-
1
votes0
answers61
viewsSelect from the Entity Framework of a table resulting from an N to N relationship
I do not know if it is very clear the question, so I will try to illustrate the scenario better. I created a table of Activities and a table of Users, in the table of Activities I have a responsible…
-
1
votes2
answers65
viewsWhen placing a class in Dbset using Migrations
I have the following classes: public DbSet<Request> Requests { get; set; } public DbSet<Answer> Answers { get; set; } where they have a one-to-Many relationship. When I want a class to…