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.
您好,感谢您花时间回答我的问题。
我想使用实体框架定义和创建一个实体(名为项目)的实例。我是否使用context.Projects.Create()或Project p = new Project():
context.Projects.Create()
Project p = new Project():
我总是使用 new 创建它,然后稍后将其添加到上下文中(可能通过存储库或服务层)
通过上下文创建它会创建对上下文的要求,并且看起来不太好。