Skip to content

Commit 8f34f5a

Browse files
committed
Java and C# updates
1 parent 916d224 commit 8f34f5a

File tree

4 files changed

+19
-32
lines changed

4 files changed

+19
-32
lines changed

articles/search/includes/quickstarts/full-text-csharp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -702,11 +702,11 @@ private static void UploadDocuments(SearchClient searchClient)
702702
{
703703
HotelId = "1",
704704
HotelName = "Stay-Kay City Hotel",
705-
Description = "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
705+
Description = "This classic hotel is fully-refurbished and ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Times Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
706706
Category = "Boutique",
707-
Tags = new[] { "pool", "air conditioning", "concierge" },
707+
Tags = new[] { "view", "air conditioning", "concierge" },
708708
ParkingIncluded = false,
709-
LastRenovationDate = new DateTimeOffset(1970, 1, 18, 0, 0, 0, TimeSpan.Zero),
709+
LastRenovationDate = new DateTimeOffset(2022, 1, 18, 0, 0, 0, TimeSpan.Zero),
710710
Rating = 3.6,
711711
Address = new Address()
712712
{

articles/search/includes/quickstarts/full-text-java.md

Lines changed: 15 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: haileytap
44
ms.author: haileytapia
55
ms.service: azure-ai-search
66
ms.topic: include
7-
ms.date: 03/04/2025
7+
ms.date: 06/13/2025
88
---
99

1010
[!INCLUDE [Full text introduction](full-text-intro.md)]
@@ -197,12 +197,11 @@ AzureKeyCredential credential = new AzureKeyCredential("<Your search service adm
197197
var hotel = new Hotel();
198198
hotel.hotelId = "1";
199199
hotel.hotelName = "Stay-Kay City Hotel";
200-
hotel.description = "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.";
201-
hotel.descriptionFr = "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.";
200+
hotel.description = "This classic hotel is fully-refurbished and ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Times Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.";
202201
hotel.category = "Boutique";
203-
hotel.tags = new String[] { "pool", "air conditioning", "concierge" };
202+
hotel.tags = new String[] { "view", "air conditioning", "concierge" };
204203
hotel.parkingIncluded = false;
205-
hotel.lastRenovationDate = OffsetDateTime.of(LocalDateTime.of(LocalDate.of(1970, 1, 18), LocalTime.of(0, 0)), ZoneOffset.UTC);
204+
hotel.lastRenovationDate = OffsetDateTime.of(LocalDateTime.of(LocalDate.of(2022, 1, 18), LocalTime.of(0, 0)), ZoneOffset.UTC);
206205
hotel.rating = 3.6;
207206
hotel.address = new Address();
208207
hotel.address.streetAddress = "677 5th Ave";
@@ -215,12 +214,11 @@ AzureKeyCredential credential = new AzureKeyCredential("<Your search service adm
215214
hotel = new Hotel();
216215
hotel.hotelId = "2";
217216
hotel.hotelName = "Old Century Hotel";
218-
hotel.description = "The hotel is situated in a nineteenth century plaza, which has been expanded and renovated to the highest architectural standards to create a modern, functional and first-class hotel in which art and unique historical elements coexist with the most modern comforts.";
219-
hotel.descriptionFr = "L'hôtel est situé dans une place du XIXe siècle, qui a été agrandie et rénovée aux plus hautes normes architecturales pour créer un hôtel moderne, fonctionnel et de première classe dans lequel l'art et les éléments historiques uniques coexistent avec le confort le plus moderne.";
217+
hotel.description = "The hotel is situated in a nineteenth century plaza, which has been expanded and renovated to the highest architectural standards to create a modern, functional and first-class hotel in which art and unique historical elements coexist with the most modern comforts. The hotel also regularly hosts events like wine tastings, beer dinners, and live music.",
220218
hotel.category = "Boutique";
221219
hotel.tags = new String[] { "pool", "free wifi", "concierge" };
222220
hotel.parkingIncluded = false;
223-
hotel.lastRenovationDate = OffsetDateTime.of(LocalDateTime.of(LocalDate.of(1979, 2, 18), LocalTime.of(0, 0)), ZoneOffset.UTC);
221+
hotel.lastRenovationDate = OffsetDateTime.of(LocalDateTime.of(LocalDate.of(2019, 2, 18), LocalTime.of(0, 0)), ZoneOffset.UTC);
224222
hotel.rating = 3.60;
225223
hotel.address = new Address();
226224
hotel.address.streetAddress = "140 University Town Center Dr";
@@ -233,10 +231,9 @@ AzureKeyCredential credential = new AzureKeyCredential("<Your search service adm
233231
hotel = new Hotel();
234232
hotel.hotelId = "3";
235233
hotel.hotelName = "Gastronomic Landscape Hotel";
236-
hotel.description = "The Hotel stands out for its gastronomic excellence under the management of William Dough, who advises on and oversees all of the Hotel’s restaurant services.";
237-
hotel.descriptionFr = "L'hôtel est situé dans une place du XIXe siècle, qui a été agrandie et rénovée aux plus hautes normes architecturales pour créer un hôtel moderne, fonctionnel et de première classe dans lequel l'art et les éléments historiques uniques coexistent avec le confort le plus moderne.";
238-
hotel.category = "Resort and Spa";
239-
hotel.tags = new String[] { "air conditioning", "bar", "continental breakfast" };
234+
hotel.description = "The Gastronomic Hotel stands out for its culinary excellence under the management of William Dough, who advises on and oversees all of the Hotel’s restaurant services.";
235+
hotel.category = "Suite";
236+
hotel.tags = new String[] { "restaurant", "bar", "continental breakfast" };
240237
hotel.parkingIncluded = true;
241238
hotel.lastRenovationDate = OffsetDateTime.of(LocalDateTime.of(LocalDate.of(2015, 9, 20), LocalTime.of(0, 0)), ZoneOffset.UTC);
242239
hotel.rating = 4.80;
@@ -251,12 +248,11 @@ AzureKeyCredential credential = new AzureKeyCredential("<Your search service adm
251248
hotel = new Hotel();
252249
hotel.hotelId = "4";
253250
hotel.hotelName = "Sublime Palace Hotel";
254-
hotel.description = "Sublime Palace Hotel is located in the heart of the historic center of Sublime in an extremely vibrant and lively area within short walking distance to the sites and landmarks of the city and is surrounded by the extraordinary beauty of churches, buildings, shops and monuments. Sublime Palace is part of a lovingly restored 1800 palace.";
255-
hotel.descriptionFr = "Le Sublime Palace Hotel est situé au coeur du centre historique de sublime dans un quartier extrêmement animé et vivant, à courte distance de marche des sites et monuments de la ville et est entouré par l'extraordinaire beauté des églises, des bâtiments, des commerces et Monuments. Sublime Palace fait partie d'un Palace 1800 restauré avec amour.";
251+
hotel.description = "Sublime Palace Hotel is located in the heart of the historic center of Sublime in an extremely vibrant and lively area within short walking distance to the sites and landmarks of the city and is surrounded by the extraordinary beauty of churches, buildings, shops and monuments. Sublime Cliff is part of a lovingly restored 19th century resort, updated for every modern convenience.";
256252
hotel.category = "Boutique";
257-
hotel.tags = new String[] { "concierge", "view", "24-hour front desk service" };
253+
hotel.tags = new String[] { "concierge", "view", "air conditioning" };
258254
hotel.parkingIncluded = true;
259-
hotel.lastRenovationDate = OffsetDateTime.of(LocalDateTime.of(LocalDate.of(1960, 2, 06), LocalTime.of(0, 0)), ZoneOffset.UTC);
255+
hotel.lastRenovationDate = OffsetDateTime.of(LocalDateTime.of(LocalDate.of(2020, 2, 06), LocalTime.of(0, 0)), ZoneOffset.UTC);
260256
hotel.rating = 4.60;
261257
hotel.address = new Address();
262258
hotel.address.streetAddress = "7400 San Pedro Ave";
@@ -403,13 +399,6 @@ AzureKeyCredential credential = new AzureKeyCredential("<Your search service adm
403399
@SearchableField(analyzerName = "en.microsoft")
404400
public String description;
405401

406-
/**
407-
* French description
408-
*/
409-
@JsonProperty("DescriptionFr")
410-
@SearchableField(analyzerName = "fr.lucene")
411-
public String descriptionFr;
412-
413402
/**
414403
* Category
415404
*/
@@ -636,12 +625,11 @@ private static void uploadDocuments(SearchClient searchClient)
636625
var hotel = new Hotel();
637626
hotel.hotelId = "1";
638627
hotel.hotelName = "Stay-Kay City Hotel";
639-
hotel.description = "The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.";
640-
hotel.descriptionFr = "L'hôtel est idéalement situé sur la principale artère commerciale de la ville en plein cœur de New York. A quelques minutes se trouve la place du temps et le centre historique de la ville, ainsi que d'autres lieux d'intérêt qui font de New York l'une des villes les plus attractives et cosmopolites de l'Amérique.";
628+
hotel.description = "This classic hotel is fully-refurbished and ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Times Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.",
641629
hotel.category = "Boutique";
642-
hotel.tags = new String[] { "pool", "air conditioning", "concierge" };
630+
hotel.tags = new String[] { "view", "air conditioning", "concierge" };
643631
hotel.parkingIncluded = false;
644-
hotel.lastRenovationDate = OffsetDateTime.of(LocalDateTime.of(LocalDate.of(1970, 1, 18), LocalTime.of(0, 0)), ZoneOffset.UTC);
632+
hotel.lastRenovationDate = OffsetDateTime.of(LocalDateTime.of(LocalDate.of(2022, 1, 18), LocalTime.of(0, 0)), ZoneOffset.UTC);
645633
hotel.rating = 3.6;
646634
hotel.address = new Address();
647635
hotel.address.streetAddress = "677 5th Ave";

articles/search/includes/quickstarts/full-text-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: haileytap
44
ms.author: haileytapia
55
ms.service: azure-ai-search
66
ms.topic: include
7-
ms.date: 03/04/2025
7+
ms.date: 06/13/2025
88
---
99

1010
[!INCLUDE [Full text introduction](full-text-intro.md)]

articles/search/includes/quickstarts/full-text-typescript.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,6 @@ interface Hotel {
530530
HotelId: string;
531531
HotelName: string;
532532
Description: string;
533-
Description_fr: string;
534533
Category: string;
535534
Tags: string[];
536535
ParkingIncluded: string | boolean;

0 commit comments

Comments
 (0)