Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Jan 30, 2026

Plan: Add EF Core MongoDB Integration Documentation

  • Create MongoDB EF Core client integration documentation file (mongodb-efcore-client.mdx)
  • Create MongoDB EF Core get started guide (mongodb-efcore-get-started.mdx)
  • Update MongoDB get started guide to include EF Core option
  • Update EF Core overview to include MongoDB option
  • Add MongoDB EF Core to sidebar navigation
  • Address code review feedback
    • Fix nested Pivot key attributes
    • Fix code indentation to use standard spacing
    • Shorten card descriptions
  • Review and finalize
Original prompt

It looks like we need add details for the EF Core MongoDB client integration, that's been added as part of 13.2 - here's the source of truth: https://github.com/dotnet/aspire/tree/main/src/Components/Aspire.MongoDB.EntityFrameworkCore


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copilot AI and others added 30 commits January 30, 2026 09:37
* Initial plan

* Add WithBun() documentation to JavaScript integration page

Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>

* Update Bun example to use specific version tag

Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
)

* Initial plan

* Add documentation for deployment slot support to Azure App Service

Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
- Created documentation for Azure Application Insights integration.
- Created documentation for Azure Data Explorer (Kusto) integration.
- Created documentation for Azure Log Analytics integration.
- Created documentation for Azure Data Lake Storage integration.
- Added `aspire doctor` command placeholder with redirect to main CLI command page.
- Added documentation for `aspire ps` command to list running AppHost processes.
- Added documentation for `aspire stop` command to stop running AppHost processes.
…#288)

* Initial plan

* Update ASPIRE008 diagnostic page for GenerateAssemblyInfo requirement

Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>

* Update project file samples to modern 13.x format

Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
#277)

* Add polyglot AppHost documentation for TypeScript, Python, Go, Rust, and Java

* feat: enhance PivotSelector component with marginTop prop for better layout control (#302)

docs: update Polyglot AppHost documentation with new features and usage examples

docs: add link to Polyglot AppHost in resource model documentation

docs: include Polyglot AppHost reference in get-started guide for broader language support

style: import utility classes for padding and margin in site CSS

style: create utils.css for reusable padding and margin utility classes

* fix: format project structure in polyglot AppHost documentation for clarity

---------

Co-authored-by: David Pine <david.pine@microsoft.com>
- Created a new translation guide document in MDX format to assist contributors in translating the aspire.dev documentation.
- Added two new images for the translation page link and language selector in both light and dark themes.
- Included a detailed section on supported languages, translation status, best practices, and tips for translators.
- Added FooterPreferences component for user preferences (theme, language, keyboard shortcuts).
- Introduced FooterSocials component to display social media links.
- Updated Footer.astro to include new components and adjusted layout for preferences.
- Enhanced Header.astro to remove theme and language selectors, now located in the footer.
- Implemented auto-detection of user language on first visit in Head.astro.
- Adjusted styles for new components and improved responsiveness.
- Updated translations in various languages to include "preferences".
- Changed hideOnClick prop in Head.astro from 'toggle' to true for improved clarity.
- Removed fixed width and height from .starlight-sidebar-topics-icon to allow for flexible sizing.
- Adjusted icon size in .social-icons and .starlight-sidebar-topics-icon for consistency and better responsiveness.
* Initial plan

* Add documentation for .NET tool resources

Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
…ASPIREEXTENSION001 with version notes and suppression methods
…ASPIRECONTAINERSHELLEXECUTION001, ASPIREPIPELINES004, ASPIREPOSTGRES001, and ASPIREUSERSECRETS001 with improved descriptions and examples
Copilot AI and others added 3 commits January 30, 2026 16:33
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
Copilot AI changed the title [WIP] Add details for EF Core MongoDB client integration Add MongoDB Entity Framework Core integration documentation Jan 30, 2026
Copilot AI requested a review from IEvangelist January 30, 2026 16:42
Comment on lines +169 to +171
</Pivot>

</Pivot>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot I think this is wrong, please double check your work here... you have double closing pivots, in multiple places.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in commit f1280df. Added key="mongo-client" attribute to all nested Pivot components so they properly reference the parent PivotSelector.

Comment on lines 110 to 125
<CardGrid>
<LinkCard
title="Understand the MongoDB hosting integration"
description="Discover how to configure persistence, MongoDB Express resources, and more."
href="/integrations/databases/mongodb/mongodb-host/"
/>
<LinkCard
title="Understand the MongoDB EF Core client integration"
description="Discover how to enrich DbContext, configure settings, and more."
href="/integrations/databases/mongodb/mongodb-efcore-client/"
/>
<LinkCard
title="Understand the MongoDB client integration"
description="Learn about the MongoDB Driver client integration."
href="/integrations/databases/mongodb/mongodb-client/"
/>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The text might get too long here on these cards, please take screenshots and use best judgement. Ideally, the right chevron won't be squished.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in commit f1280df. Shortened descriptions:

  • "Discover how to configure persistence..." → "Configure persistence..."
  • "Discover how to enrich DbContext..." → "Enrich DbContext..."

Comment on lines 41 to 42
var mongo = builder.AddMongoDB("mongo")
.WithLifetime(ContainerLifetime.Persistent);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We've had feedback that this style of formatting is not ideal. Please try to stylize C# code such that fluent APIs on a newline are simply indented a standard amount (not aligned with the line above .Call.)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in commit f1280df. Updated code formatting to use standard 4-space indentation instead of alignment.

Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants