-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic CRUD in ASP.NET Core OData and F# #306
Basic CRUD in ASP.NET Core OData and F# #306
Conversation
Learn Build status updates of commit 8bcf87c: 💡 Validation status: suggestions
Odata-docs/TOC.yml
For more details, please refer to the build report. Note: Links can become broken if there are changes on the target sites. If you think the validation result is a false alarm, please use SiteHelp with option 'Content authoring and publishing -> False alarm on broken link validation' to report. Note: Your PR may contain errors or warnings or suggestions unrelated to the files you changed. This happens when external dependencies like GitHub alias, Microsoft alias, cross repo links are updated. Please use these instructions to resolve them. For any questions, please:
|
8bcf87c
to
4e9a17f
Compare
Learn Build status updates of commit 4e9a17f: 💡 Validation status: suggestions
Odata-docs/TOC.yml
For more details, please refer to the build report. Note: Links can become broken if there are changes on the target sites. If you think the validation result is a false alarm, please use SiteHelp with option 'Content authoring and publishing -> False alarm on broken link validation' to report. Note: Your PR may contain errors or warnings or suggestions unrelated to the files you changed. This happens when external dependencies like GitHub alias, Microsoft alias, cross repo links are updated. Please use these instructions to resolve them. For any questions, please:
|
4e9a17f
to
4290c74
Compare
Learn Build status updates of commit 4290c74: 💡 Validation status: suggestions
Odata-docs/TOC.yml
For more details, please refer to the build report. Note: Links can become broken if there are changes on the target sites. If you think the validation result is a false alarm, please use SiteHelp with option 'Content authoring and publishing -> False alarm on broken link validation' to report. Note: Your PR may contain errors or warnings or suggestions unrelated to the files you changed. This happens when external dependencies like GitHub alias, Microsoft alias, cross repo links are updated. Please use these instructions to resolve them. For any questions, please:
|
4290c74
to
4d34cca
Compare
Learn Build status updates of commit 4d34cca: 💡 Validation status: suggestions
Odata-docs/TOC.yml
For more details, please refer to the build report. Note: Links can become broken if there are changes on the target sites. If you think the validation result is a false alarm, please use SiteHelp with option 'Content authoring and publishing -> False alarm on broken link validation' to report. Note: Your PR may contain errors or warnings or suggestions unrelated to the files you changed. This happens when external dependencies like GitHub alias, Microsoft alias, cross repo links are updated. Please use these instructions to resolve them. For any questions, please:
|
let People = GetPeople() | ||
``` | ||
|
||
**NOTE:** The F# compiler requires files (and code within a file) to be organized in dependency order. In our project for example, the compiler has to "see" the `Person` type first before the `DataSource` module since the latter is dependent on the former. For that reason, you'll need to manually edit the _.fsproj_ file to reorder the files as follows: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this tutorial you create the Person
type first then the DataSource
module. Yet you still have to manually re-order the project file such that Person appears before DataSource. Does that mean that Visual Studio does not add compilation items in the order you create them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@habbes "Does that mean that Visual Studio does not add compilation items in the order you create them?" - It'd seem so. Visual Studio could be ordering them alphabetically
Basic CRUD in ASP.NET Core OData and F#