msawczyn/EFDesigner

Required string identity property is not present in the constructor

Cyclonit opened this issue · 3 comments

Hi,

I have a simple class, using a string property as Identity. The following properties are set in the designer:

  • Required: True
  • Column Type: default
  • Identity Type: manual
  • Indexed: True
  • Indexed Unique: True
  • Is Identity: True

Given that the identity type is set to manual, I am expecting it to show up in the generated Constructor, such that an identity can be assigned when an instance of the class is being generated. The constructor however, does not contain this property. The create(...) method does not have the property either.

Is this working as intended? If so: Why?

This fix is in 1.3.0.5. Thanks for reporting it!

Thank you very much!