Skip to content

Support nullable members should be optional #28

@enkelmedia

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.

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