You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Configures the property to be used with a full-text search.
248
+
/// Enables full-text search for this property using a specified language.
249
249
/// </summary>
250
250
/// <remarks>
251
251
/// See <see href="https://aka.ms/efcore-docs-modeling">Modeling entity types and relationships</see>, and
252
252
/// <see href="https://aka.ms/efcore-docs-cosmos">Accessing Azure Cosmos DB with EF Core</see> for more information and examples.
253
253
/// </remarks>
254
254
/// <param name="propertyBuilder">The builder for the property being configured.</param>
255
-
/// <param name="language">The language for the full-text search.</param>
255
+
/// <param name="language">The language used for full-text search. Setting this to (<see langword="null" /> will use the default language for the container, or "en-US" if default language was not specified.</param>
256
256
/// <returns>The same builder instance so that multiple calls can be chained.</returns>
/// Configures the property to enable full-text search for Azure Cosmos DB using a specified language.
269
+
/// Enables full-text search for this property using a specified language.
268
270
/// </summary>
269
271
/// <remarks>
270
272
/// See <see href="https://aka.ms/efcore-docs-modeling">Modeling entity types and relationships</see>, and
@@ -276,62 +278,142 @@ public static PropertyBuilder IsFullTextProperty(
276
278
/// </remarks>
277
279
/// <typeparam name="TProperty">The type of the property being configured.</typeparam>
278
280
/// <param name="propertyBuilder">The builder for the property being configured.</param>
279
-
/// <param name="language">The language for the full-text search.</param>
281
+
/// <param name="language">The language used for full-text search. Setting this to (<see langword="null" /> will use the default language for the container, or "en-US" if default language was not specified.</param>
280
282
/// <returns>The same builder instance so that multiple calls can be chained.</returns>
/// Configures the property to enable full-text search for Azure Cosmos DB using a specified language.
290
+
/// Enables full-text search for this property using a specified language.
289
291
/// </summary>
290
292
/// <remarks>
291
293
/// See <see href="https://aka.ms/efcore-docs-modeling">Modeling entity types and relationships</see>, and
292
294
/// <see href="https://aka.ms/efcore-docs-cosmos">Accessing Azure Cosmos DB with EF Core</see> for more information and examples.
293
295
/// </remarks>
294
296
/// <param name="propertyBuilder">The builder for the property being configured.</param>
295
-
/// <param name="language">The language for the full-text search.</param>
297
+
/// <param name="language">The language used for full-text search. Setting this to (<see langword="null" /> will use the default language for the container, or "en-US" if default language was not specified.</param>
296
298
/// <param name="fromDataAnnotation">Indicates whether the configuration was specified using a data annotation.</param>
297
299
/// <returns>
298
300
/// The same builder instance if the configuration was applied,
0 commit comments