Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将一个 DBSet 作为参数传递给一个方法,并且还传递了一个DbContext以便我可以调用SaveChanges().
DbContext
SaveChanges()
有什么方法可以调用SaveChanges()或等效于 DbSet 对象本身?
如果不创建您自己的抽象,例如Repository. 的实例DbSet没有对父级的引用DbContext。
Repository
DbSet