-
Notifications
You must be signed in to change notification settings - Fork 524
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XCode 代码生成工具为什么不能生成 Nullable 属性? #143
Comments
代码生成器xcodetool.exe默认不支持可空类型,你可以通过模型文件的Nullable配置来打开 |
是这个开关,你的代码生成器xcodetool是最新版吗?可以下载最新版,或者拉取代码自己发布一个 |
是的,我的 xcodetool 工具是最新的,我发现问题所在:打开这个开关后,只有引用类型才会生成 Nullable,比如 String? ,值类型不会生成,比如 Int32,不会生成 Int32? 我不知道为什么是这个结果,您也可以在您本地试试。希望团队能修复这个问题,谢谢! |
如果你的测试正确,那么说明这是一个bug,需要有人来修复。 大部分XCode用户从来不用可空类型,所以大家都没有注意这个问题。 |
是的,不过我觉得可空类型是必需的,毕竟从数据库角度来讲,0 和 NULL 的意义是完全不同的。比如有时候数据库字段是 NULL 值,但是我们查询返回给前端的结果是 0,这样并不是大家想要的结果。 |
想法是美好的! NewLife团队的理念是:不强求! |
我的 Model.xml 配置文件有一个字段是可空的,即 Nullable="True",为什么生成的实体对应的属性不是可空类型的属性呢?
比如:
我想要的结果
public long? Id { get; set; }
但是实际结果是
public long Id { get; set; }
The text was updated successfully, but these errors were encountered: