Skip to content

Use actual scalar type instead of metadata scalar type for generated C# properties #18

Description

@amwebb

The C# metadata code generator should create properties for metadata fields that use C# scalar types instead of metadata scalar types.

For example, the title field of document should have a property:

public string Title
{
get { return title; }
set {title = value; }
}

instead, it currently generates the following:

public MetadataString Title { ... }

Activity

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

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions