Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
TomProkop committed Jun 12, 2024
1 parent 07ed843 commit e91da9b
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,39 @@ dotnet new pp-solution --SolutionDisplayName "Solutions.Presentation" --Publishe
```

### Tables
Create a new table:
Create a new *standard* table:
```console
dotnet new pp-entity --Behavior New --PublisherPrefix "tom" --LogicalName "shiftevent" --LogicalNamePlural "shiftevents" --DisplayName "Shift Event" --DisplayNamePlural "Shift Events" --allow-scripts yes
dotnet new pp-entity `
--Behavior New `
--PublisherPrefix "tom" `
--LogicalName "location" `
--LogicalNamePlural "locations" `
--DisplayName "Location" `
--DisplayNamePlural "Locations" `
--allow-scripts yes
```

Create a new *activity* table:
```console
dotnet new pp-entity `
--EntityType Activity `
--Behavior New `
--PublisherPrefix "tom" `
--LogicalName "shiftevent" `
--LogicalNamePlural "shiftevents" `
--DisplayName "Shift Event" `
--DisplayNamePlural "Shift Events" `
--allow-scripts yes
```

Add an existing *custom table* to a solution:
```console
dotnet new pp-entity --Behavior Existing --PublisherPrefix "tom" --LogicalName "shiftevent" --DisplayName "Shift Event" --allow-scripts yes
dotnet new pp-entity `
--Behavior Existing `
--PublisherPrefix "tom" `
--LogicalName "shiftevent" `
--DisplayName "Shift Event" `
--allow-scripts yes
```

Add an existing *system table* to a solution:
Expand Down

0 comments on commit e91da9b

Please sign in to comment.