Rodney Aaron Stainback created THRIFT-4632:
----------------------------------------------
Summary: .NET core generator incorrectly uses Isset with nullable
Key: THRIFT-4632
URL: https://issues.apache.org/jira/browse/THRIFT-4632
Project: Thrift
Issue Type: Bug
Components: .NETCore - Compiler
Affects Versions: 0.11.0
Reporter: Rodney Aaron Stainback
Looks like the bug in on this line
bool generate_isset = (nullable_ && has_non_required_default_value_fields)
|| (!nullable_ && has_non_required_fields);
I think it should be
bool generate_isset = (!nullable_ && has_non_required_fields);
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)