I have an application in C# that uses Entity Framework .
All my DbSet of DbContext , I extend them to have a default search for the grid, below method example.
public static GridDTO GridPadrao(this DbSet<Cliente...
I have the following classes:
public DbSet<Request> Requests { get; set; }
public DbSet<Answer> Answers { get; set; }
being that they have a one-to-many relationship.
When I want a class to be added to my EntityFramework migra...
I do not know if the question is very clear, so I'll try to illustrate the scenario better.
I created an Activities table and a User table, in the Activities table I have a responsible for it and I can also have some users associated with it....