Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Odata-docs/odatacli/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ odata-cli generate [options]

Transforms names (class and property names) to upper camel-case so that to better conform with C# naming conventions.

- `--internal|-i`
- `--enable-internal|-i`

Applies the `internal` class modifier on generated classes instead of `public` thereby making them invisible outside the assembly.

- `omit-versioning-info|-vi`
- `--omit-versioning-info|-vi`

Omit runtime version and code generation timestamp from the generated files.

Expand Down Expand Up @@ -128,6 +128,10 @@ odata-cli generate [options]

Full path to output directory. This could be an empty directory or a directory with a .csproj/.vbproj file. This is a required option.

- `--service-name|-s`

Human-readable display name of the service instance. If not provided, the default name 'OData Service' is used.

### Examples
```Console
odata-cli generate -m "http://localhost/odata" -o "link-to-output-directory"
Expand Down