Skip to content

Support nullable members should be optional #28

Description

@enkelmedia

TypeScript has something called "Optional Members":

export interface Poco {
name: string;
birthdate? : Date; // Optional
}

If my poco has a nullable member

public class Poco {
   public string Name {get;set;}
   public DateTime? Birthdate {get;set}
}

The current implementation would not make the nullable member optional.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions