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.
我有实体框架的问题。
我有一个Victor包含 3 个可空列的表。向导完成后,我看不到方法内的可为空列CreateVictor(),此方法是由向导而不是我自动生成的。
Victor
CreateVictor()
4小时后,我找不到任何解决方案。这仅适用于可为空的列。
这是一个“功能”而不是一个错误。这个想法是只需要非空列来创建“维克多”。因此它们是 CreateVictor() 方法中包含的唯一列。
如果要设置其他属性,可以使用 CreateVictor() 返回的对象来执行此操作。
var victor = Victor.CreateVictor(...); victor.Name = "name";