Skip to content
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

Update to new documentation URL #3568

Merged
merged 4 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 3 additions & 2 deletions Docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ To see what is supported, refer to the [LINQ Support](linqsupport.md) page.

Documentation
-------------
The documentation can be found at [https://docs.mongodb.com/realm/sdk/dotnet/](https://docs.mongodb.com/realm/sdk/dotnet/).
The documentation can be found at [https://www.mongodb.com/docs/atlas/d
kneth marked this conversation as resolved.
Show resolved Hide resolved
evice-sdks/sdk/dotnet/](https://www.mongodb.com/docs/atlas/device-sdks/sdk/dotnet/).

The API reference is located at [https://docs.mongodb.com/realm-sdks/dotnet/latest/reference/Realms.html](https://docs.mongodb.com/realm-sdks/dotnet/latest/reference/Realms.html).
The API reference is located at [https://www.mongodb.com/docs/realm-sdks/dotnet/latest/](https://www.mongodb.com/docs/realm-sdks/dotnet/latest/).

Source
------
Expand Down
12 changes: 6 additions & 6 deletions NuGet.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<img src="./media/logo.svg" alt="realm by MongoDB">
</picture>

Realm is a mobile database that runs directly on phones, tablets or wearables. It supports all major mobile and desktop operating systems, such as iOS, Android, UWP, macOS, Linux, and Windows. For a full list of supported platforms and their versions, check out the [Supported Platforms](https://docs.mongodb.com/realm/dotnet/#supported-platforms) sub-section in the documentation.
Realm is a mobile database that runs directly on phones, tablets or wearables. It supports all major mobile and desktop operating systems, such as iOS, Android, UWP, macOS, Linux, and Windows. For a full list of supported platforms and their versions, check out the [Platform and Framework Compatibility](https://www.mongodb.com/docs/realm/sdk/dotnet/compatibility/) section in the documentation.

## Features

* **Mobile-first:** Realm is the first database built from the ground up to run directly inside phones, tablets, and wearables.
* **Simple:** Data is directly [exposed as objects](https://docs.mongodb.com/realm/dotnet/objects/) and [queryable by code](https://docs.mongodb.com/realm/dotnet/query-engine/), removing the need for ORM's riddled with performance & maintenance issues. Plus, we've worked hard to [keep our API down to just a few common classes](https://docs.mongodb.com/realm-sdks/dotnet/latest/): most of our users pick it up intuitively, getting simple apps up & running in minutes.
* **Simple:** Data is directly [exposed as objects](https://www.mongodb.com/docs/realm/sdk/dotnet/model-data/object-models-and-schemas/#std-label-dotnet-objects/) and [queryable by code](https://www.mongodb.com/docs/realm/sdk/dotnet/crud/filter/), removing the need for ORM's riddled with performance & maintenance issues. Plus, we've worked hard to [keep our API down to just a few common classes](https://www.mongodb.com/docs/realm-sdks/dotnet/latest/): most of our users pick it up intuitively, getting simple apps up & running in minutes.
* **Modern:** Realm supports relationships, generics, vectorization and modern C# idioms.
* **Fast:** Realm is faster than even raw SQLite on common operations while maintaining an extremely rich feature set.
* **[Device Sync](https://www.mongodb.com/atlas/app-services/device-sync)**: Makes it simple to keep data in sync across users, devices, and your backend in real-time. Get started for free with [a template application](https://github.com/mongodb/template-app-maui-todo) and [create the cloud backend](http://mongodb.com/realm/register?utm_medium=github_atlas_CTA&utm_source=realm_dotnet_github).
* **[Device Sync](https://www.mongodb.com/docs/atlas/app-services/sync/)**: Makes it simple to keep data in sync across users, devices, and your backend in real-time. Get started for free with [a template application](https://github.com/mongodb/template-app-maui-todo) and [create the cloud backend](http://mongodb.com/realm/register?utm_medium=github_atlas_CTA&utm_source=realm_dotnet_github).

## Getting Started

Expand Down Expand Up @@ -71,12 +71,12 @@ peopleWithJ.AsRealmCollection().CollectionChanged += (s, e) =>
};
```

For more examples, see the detailed instructions in our [User Guide](https://docs.mongodb.com/realm/dotnet/install/) to add Realm to your solution.
For more examples, see the detailed instructions in our [User Guide](https://www.mongodb.com/docs/realm/sdk/dotnet/install/) to add Realm to your solution.

## Documentation

The documentation can be found at [docs.mongodb.com/realm/dotnet/](https://docs.mongodb.com/realm/dotnet/).
The API reference is located at [docs.mongodb.com/realm-sdks/dotnet/latest/](https://docs.mongodb.com/realm-sdks/dotnet/latest/).
The documentation can be found at [mongodb.com/docs/atlas/device-sdks/sdk/dotnet/](https://www.mongodb.com/docs/atlas/device-sdks/sdk/dotnet/).
The API reference is located at [mongodb.com/docs/realm-sdks/dotnet/latest/](https://www.mongodb.com/docs/realm-sdks/dotnet/latest/).

## Getting Help

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@

Realm is a mobile database that runs directly on phones, tablets or wearables.

This repository holds the source code for the .NET / C# versions of Realm. Currently, we support all major mobile and desktop operating systems, such as iOS, Android, UWP, macOS, Linux, and Windows. For a full list of supported platforms and their versions, check out the [Supported Platforms](https://docs.mongodb.com/realm/dotnet/#supported-platforms) sub-section in the documentation.
This repository holds the source code for the .NET / C# versions of Realm. Currently, we support all major mobile and desktop operating systems, such as iOS, Android, UWP, macOS, Linux, and Windows. For a full list of supported platforms and their versions, check out the [Platform and Framework Compatibility](https://www.mongodb.com/docs/realm/sdk/dotnet/compatibility/) section in the documentation.

## Features

* **Mobile-first:** Realm is the first database built from the ground up to run directly inside phones, tablets, and wearables.
* **Simple:** Data is directly [exposed as objects](https://docs.mongodb.com/realm/dotnet/objects/) and [queryable by code](https://docs.mongodb.com/realm/dotnet/query-engine/), removing the need for ORM's riddled with performance & maintenance issues. Plus, we've worked hard to [keep our API down to just a few common classes](https://docs.mongodb.com/realm-sdks/dotnet/latest/): most of our users pick it up intuitively, getting simple apps up & running in minutes.
* **Simple:** Data is directly [exposed as objects](https://www.mongodb.com/docs/atlas/device-sdks/sdk/dotnet/model-data/object-models-and-schemas/) and [queryable by code](https://www.mongodb.com/docs/atlas/device-sdks/sdk/dotnet/crud/filter/), removing the need for ORM's riddled with performance & maintenance issues. Plus, we've worked hard to [keep our API down to just a few common classes](https://www.mongodb.com/docs/realm-sdks/dotnet/latest/): most of our users pick it up intuitively, getting simple apps up & running in minutes.
* **Modern:** Realm supports relationships, generics, vectorization and modern C# idioms.
* **Fast:** Realm is faster than even raw SQLite on common operations while maintaining an extremely rich feature set.
* **[MongoDB Atlas Device Sync](https://www.mongodb.com/atlas/app-services/device-sync)**: Makes it simple to keep data in sync across users, devices, and your backend in real-time. Get started for free with [a template application](https://github.com/mongodb/template-app-maui-todo) and [create the cloud backend](http://mongodb.com/realm/register?utm_medium=github_atlas_CTA&utm_source=realm_dotnet_github).

## Getting Started

Please see the detailed instructions in our [User Guide](https://docs.mongodb.com/realm/dotnet/install/) to add Realm to your solution.
Please see the detailed instructions in our [User Guide](https://www.mongodb.com/docs/atlas/device-sdks/sdk/dotnet/install/) to add Realm to your solution.

## Documentation

The documentation can be found at [docs.mongodb.com/realm/dotnet/](https://docs.mongodb.com/realm/dotnet/).
The API reference is located at [docs.mongodb.com/realm-sdks/dotnet/latest/](https://docs.mongodb.com/realm-sdks/dotnet/latest/).
The documentation can be found at [mongodb.com/docs/atlas/device-sdks/sdk/dotnet/](https://www.mongodb.com/docs/atlas/device-sdks/sdk/dotnet/).
The API reference is located at [mongodb.com/docs/realm-sdks/dotnet/latest/](https://www.mongodb.com/docs/realm-sdks/dotnet/latest/).

## Getting Help

Expand All @@ -38,7 +38,7 @@ Refer to [this guide](https://www.visualstudio.com/en-us/docs/package/nuget/cons

## Building Realm

We highly recommend [using our pre-built binaries via NuGet](https://docs.mongodb.com/realm/dotnet/install/#open-the-nuget-package-manager) but you can also build from source.
We highly recommend [using our pre-built binaries via NuGet](https://www.mongodb.com/docs/atlas/device-sdks/sdk/dotnet/install/#open-the-nuget-package-manager) but you can also build from source.

Prerequisites:

Expand Down
6 changes: 3 additions & 3 deletions Realm/Realm.SourceGenerator/Realm.SourceGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyName>Realm.SourceGenerator</AssemblyName>
<PackageId>Realm.SourceGenerator</PackageId>
<Title>Realm.SourceGenerator</Title>
<ReleaseNotes>https://docs.mongodb.com/realm-sdks/dotnet/latest/CHANGELOG.html</ReleaseNotes>
<ReleaseNotes>https://www.mongodb.com/docs/realm-sdks/dotnet/latest/CHANGELOG.html</ReleaseNotes>
<CodeAnalysisRuleSet>$(ProjectDir)..\..\global.ruleset</CodeAnalysisRuleSet>
<Description>Realm.SourceGenerator is a Source Generator used to generate the implementation of Realm model classes. </Description>
<DisableFody>true</DisableFody>
Expand Down Expand Up @@ -36,7 +36,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

<!-- Unity does not support the latest version of CodeAnalysis.CSharp. According to the docs it should support version 3.8.0,
<!-- Unity does not support the latest version of CodeAnalysis.CSharp. According to the docs it should support version 3.8.0,
but it works also with 3.9.0. We need to verify manually if it works also with some later versions. -->
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4">
Expand All @@ -46,7 +46,7 @@
</ItemGroup>

<!-- The following are necessary because SGs have a special behaviour for transient dependencies. The solution provided in the cookbook does not work.
But this is what they do in their own examples:
But this is what they do in their own examples:
https://github.com/dotnet/roslyn-sdk/blob/main/samples/CSharp/SourceGenerators/SourceGeneratorSamples/CSharpSourceGeneratorSamples.csproj-->
<PropertyGroup>
<GetTargetPathDependsOn>$(GetTargetPathDependsOn);GetDependencyTargetPaths</GetTargetPathDependsOn>
Expand Down
9 changes: 5 additions & 4 deletions Realm/Realm.Unity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,20 @@ Realm is an embedded mobile database that runs directly on phones, tablets, or d
## Features

* **Mobile-first:** Realm is the first database built from the ground up to run directly inside phones, tablets, and wearables.
* **Simple:** Data is directly [exposed as objects](https://docs.mongodb.com/realm/dotnet/objects/) and [queryable by code](https://docs.mongodb.com/realm/dotnet/query-engine/), removing the need for ORM's riddled with performance & maintenance issues. Plus, we've worked hard to [keep our API down to just a few common classes](https://docs.mongodb.com/realm-sdks/dotnet/latest/): most of our users pick it up intuitively, getting simple apps up & running in minutes.
* **Simple:** Data is directly [exposed as objects](https://www.mongodb.com/docs/realm/sdk/dotnet/model-data/object-models-and-schemas/#std-label-dotnet-objects/) and [queryable by code](https://www.mongodb.com/docs/realm/sdk/dotnet/crud/filter/), removing the need for ORM's riddled with performance & maintenance issues. Plus, we've worked hard to [keep our API down to just a few common classes](https://www.mongodb.com/docs/realm-sdks/dotnet/latest/): most of our users pick it up intuitively, getting simple apps up & running in minutes.
* **Modern:** Realm supports relationships, generics, vectorization and modern C# idioms.
* **Fast:** Realm is faster than even raw SQLite on common operations while maintaining an extremely rich feature set.
* **[Device Sync](https://www.mongodb.com/docs/atlas/app-services/sync/)**: Makes it simple to keep data in sync across users, devices, and your backend in real-time. Get started for free with [a template application](https://github.com/mongodb/template-app-maui-todo) and [create the cloud backend](http://mongodb.com/realm/register?utm_medium=github_atlas_CTA&utm_source=realm_dotnet_github).

## Getting Started

Please see the detailed instructions in our [Install Guide](https://docs.mongodb.com/realm/sdk/dotnet/unity/#install) to add Realm to your Unity project.
Please see the detailed instructions in our [Install Guide](https://www.mongodb.com/docs/realm/sdk/dotnet/unity/) to add Realm to your Unity project.

## Documentation

The documentation can be found at [docs.mongodb.com/realm/dotnet/](https://docs.mongodb.com/realm/dotnet/).
The documentation can be found at [mongodb.com/docs/atlas/device-sdks/sdk/dotnet/](https://www.mongodb.com/docs/atlas/device-sdks/sdk/dotnet/).

The API reference is located at [docs.mongodb.com/realm-sdks/dotnet/latest/](https://docs.mongodb.com/realm-sdks/dotnet/latest/).
The API reference is located at [mongodb.com/docs/realm-sdks/dotnet/latest/](https://www.mongodb.com/docs/realm-sdks/dotnet/latest/).

## Getting Help

Expand Down
4 changes: 2 additions & 2 deletions Realm/Realm.Unity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"author": {
"name": "Realm",
"email": "[email protected]",
"url": "https://docs.mongodb.com/realm/dotnet/"
"url": "https://www.mongodb.com/docs/atlas/device-sdks/sdk/dotnet/"
},
"bugs": {
"url": "https://github.com/realm/realm-dotnet/issues",
Expand All @@ -29,4 +29,4 @@
"type": "git",
"url": "git+ssh://[email protected]:realm/realm-dotnet.git"
}
}
}
2 changes: 1 addition & 1 deletion Realm/Realm.UnityUtils/Realm.UnityUtils.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework Condition="'$(LocalUnityReference)' != 'true'">netstandard2.0</TargetFramework>
<PackageId>Realm.UnityUtils</PackageId>
<Title>Realm.UnityUtils</Title>
<ReleaseNotes>https://docs.mongodb.com/realm-sdks/dotnet/latest/CHANGELOG.html</ReleaseNotes>
<ReleaseNotes>https://www.mongodb.com/docs/realm-sdks/dotnet/latest/CHANGELOG.html</ReleaseNotes>
<CodeAnalysisRuleSet>$(ProjectDir)..\..\global.ruleset</CodeAnalysisRuleSet>
<AssemblyName>Realm.UnityUtils</AssemblyName>
<DisableFody>true</DisableFody>
Expand Down
2 changes: 1 addition & 1 deletion Realm/Realm/Configurations/FlexibleSyncConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace Realms.Sync
/// <see cref="FlexibleSyncConfiguration"/> will be initially empty until one or more subscriptions are added
/// via <see cref="Realm.Subscriptions"/>.
/// </summary>
/// <seealso href="https://docs.mongodb.com/realm/sdk/dotnet/fundamentals/realm-sync/">Sync Docs</seealso>
/// <seealso href="https://www.mongodb.com/docs/realm/sdk/dotnet/sync/">Device Sync Docs</seealso>
public class FlexibleSyncConfiguration : SyncConfigurationBase
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Realm/Realm/Configurations/PartitionSyncConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace Realms.Sync
/// <summary>
/// A <see cref="PartitionSyncConfiguration"/> is used to setup a <see cref="Realm"/> that can be synchronized between devices using Atlas Device Sync.
/// </summary>
/// <seealso href="https://docs.mongodb.com/realm/sync/overview/">Sync Overview Docs</seealso>
/// <seealso href="https://www.mongodb.com/docs/realm/sdk/dotnet/sync/">Device Sync Docs</seealso>
public class PartitionSyncConfiguration : SyncConfigurationBase
{
/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions Realm/Realm/Configurations/SyncConfigurationBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace Realms.Sync
/// <see cref="FlexibleSyncConfiguration"/> allows you to start with an empty Realm and send the server a set of queries which it will run and
/// populate the Realm with all documents matching them.
/// </summary>
/// <seealso href="https://docs.mongodb.com/realm/sync/overview/">Sync Overview Docs</seealso>
/// <seealso href="https://www.mongodb.com/docs/realm/sdk/dotnet/sync/">Device Sync Docs</seealso>
public abstract class SyncConfigurationBase : RealmConfigurationBase
{
private ClientResetHandlerBase _clientResetHandler = new RecoverOrDiscardUnsyncedChangesHandler();
Expand Down Expand Up @@ -66,7 +66,7 @@ public abstract class SyncConfigurationBase : RealmConfigurationBase
/// <see cref="DiscardUnsyncedChangesHandler"/> and <see cref="ManualRecoveryHandler"/>.
/// The default <see cref="RecoverOrDiscardUnsyncedChangesHandler"/> will have no custom actions set for the before and after callbacks.
/// </remarks>
/// <seealso href="https://docs.mongodb.com/realm/sdk/dotnet/advanced-guides/client-reset/">Client reset docs</seealso>
/// <seealso href="https://www.mongodb.com/docs/realm/sdk/dotnet/sync/client-reset/">Client reset docs</seealso>
public virtual ClientResetHandlerBase ClientResetHandler
{
get => _clientResetHandler;
Expand Down
4 changes: 2 additions & 2 deletions Realm/Realm/Exceptions/RealmMigrationNeededException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ namespace Realms.Exceptions
/// <summary>
/// Exception thrown when attempting to open a file whose <see cref="Realms.Schema.RealmSchema"/> differs from your current class declarations.
/// </summary>
/// <seealso href="https://docs.mongodb.com/realm/dotnet/migrations/">Read more about Migrations.</seealso>
/// <seealso href="https://www.mongodb.com/docs/realm/sdk/dotnet/model-data/change-an-object-model/#migrate-a-schema/">Read more about Migrations.</seealso>
public class RealmMigrationNeededException : RealmFileAccessErrorException
{
internal RealmMigrationNeededException(string message) : base(message)
{
HelpLink = "https://docs.mongodb.com/realm/dotnet/migrations/";
HelpLink = "https://www.mongodb.com/docs/realm/sdk/dotnet/model-data/change-an-object-model/#migrate-a-schema/";
}
}
}
4 changes: 2 additions & 2 deletions Realm/Realm/Exceptions/RealmSchemaValidationException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace Realms.Exceptions
/// Exception thrown when the schema specified in your C# models doesn't pass validation for the type of Realm you're trying to open.
/// The message contains information about the validation errors and how to correct them.
/// </summary>
/// <seealso href="https://docs.mongodb.com/realm/dotnet/realms/#std-label-dotnet-realm-schema">
/// <seealso href="https://www.mongodb.com/docs/realm/sdk/dotnet/model-data/define-object-model/">
/// General information about Realm's schema.
/// </seealso>
public class RealmSchemaValidationException : RealmException
Expand All @@ -31,4 +31,4 @@ internal RealmSchemaValidationException(string detailMessage) : base(detailMessa
{
}
}
}
}
2 changes: 1 addition & 1 deletion Realm/Realm/Exceptions/Sync/ErrorCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
/// <c>ManualResetFallback</c> is invoked on one of the automatic client reset handlers.
/// </summary>
/// <seealso cref="SyncConfigurationBase.ClientResetHandler"/>
/// <seealso href="https://docs.mongodb.com/realm/sdk/dotnet/advanced-guides/client-reset"/>
/// <seealso href="https://www.mongodb.com/docs/realm/sdk/dotnet/sync/client-reset#manual-recovery/">
kneth marked this conversation as resolved.
Show resolved Hide resolved
ClientReset = 1032,

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (ubuntu-latest, linux-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (ubuntu-latest, linux-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (ubuntu-latest, linux-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (ubuntu-latest, linux-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Source Generation

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (windows-latest, win-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (windows-latest, win-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (windows-latest, win-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (windows-latest, win-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (macos-latest, osx-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (macos-latest, osx-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (macos-latest, osx-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Weaver (macos-latest, osx-x64)

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Analyze C#

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Analyze C#

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Package / NuGet

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Package / NuGet

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.'

Check warning on line 68 in Realm/Realm/Exceptions/Sync/ErrorCode.cs

View workflow job for this annotation

GitHub Actions / Test / Code Coverage

XML comment has badly formed XML -- 'Expected an end tag for element 'seealso'.' [/home/runner/work/realm-dotnet/realm-dotnet/Realm/Realm/Realm.csproj::TargetFramework=net6.0]

/// <summary>
/// The client attempted to upload an invalid schema change - either an additive schema change
Expand Down
2 changes: 1 addition & 1 deletion Realm/Realm/Extensions/CollectionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ public static IDisposable SubscribeForKeyNotifications<T>(this IDictionary<strin
/// var results4 = realm.All&lt;Foo&gt;("Bar.IntValue > $0 || (Bar.String == $1 &amp;&amp; Bar.Bool == $2)", 5, "small", true);
/// </code>
/// </example>
/// <seealso href="https://docs.mongodb.com/realm/reference/realm-query-language/">
/// <seealso href="https://www.mongodb.com/docs/realm/realm-query-language/">
/// Examples of the NSPredicate syntax
/// </seealso>
/// <seealso href="https://academy.realm.io/posts/nspredicate-cheatsheet/">NSPredicate Cheatsheet</seealso>
Expand Down
2 changes: 1 addition & 1 deletion Realm/Realm/Helpers/AsyncHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static void EnsureValidContext()
{
throw new NotSupportedException(MissingContextErrorMessage)
{
HelpLink = "https://docs.mongodb.com/realm/dotnet/threading/"
HelpLink = "https://www.mongodb.com/docs/atlas/device-sdks/sdk/dotnet/crud/threading/"
};
}
}
Expand Down
Loading
Loading