Skip to content

Commit 9af8cf2

Browse files
committed
review-2
1 parent d016721 commit 9af8cf2

9 files changed

+10
-11
lines changed

learn-pr/dot-net-maui/store-local-data/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: introduction
66
title: "Introduction"
77
description: "Introduction to the module"
8-
ms.date: 10/13/2023
8+
ms.date: 11/11/2024
99
author: codemillmatt
1010
ms.author: masoucou
1111
ms.topic: unit

learn-pr/dot-net-maui/store-local-data/2-compare-storage-options.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: unit
66
title: "Compare storage options"
77
description: "Describe the options available for storing data locally in a .NET Multi-platform App UI (MAUI) application"
8-
ms.date: 10/13/2023
8+
ms.date: 11/11/2024
99
author: codemillmatt
1010
ms.author: masoucou
1111
ms.topic: unit

learn-pr/dot-net-maui/store-local-data/3-store-data-locally-with-sqlite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: unit
66
title: "Store data locally with SQLite"
77
description: "Use SQLite to store data in a .NET Multi-platform App UI (MAUI) application"
8-
ms.date: 10/13/2023
8+
ms.date: 11/11/2024
99
author: codemillmatt
1010
ms.author: masoucou
1111
ms.topic: unit

learn-pr/dot-net-maui/store-local-data/4-exercise-store-data-locally-with-sqlite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: exercise
66
title: "Exercise: Store data locally with SQLite"
77
description: "Describe how to use SQLIte to store data in a .NET Multi-platform App UI (MAUI) application"
8-
ms.date: 10/13/2023
8+
ms.date: 11/11/2024
99
author: codemillmatt
1010
ms.author: masoucou
1111
ms.topic: unit

learn-pr/dot-net-maui/store-local-data/5-use-sqlite-asynchronously.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: unit
66
title: "Use SQLite asynchronously"
77
description: "Perform SQLite operations asynchronously to maintain responsiveness in a .NET Multi-platform App UI (MAUI) app"
8-
ms.date: 10/13/2023
8+
ms.date: 11/11/2024
99
author: codemillmatt
1010
ms.author: masoucou
1111
ms.topic: unit

learn-pr/dot-net-maui/store-local-data/6-exercise-use-sqlite-asynchronously.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: exercise
66
title: "Exercise: Use SQLite asynchronously"
77
description: "Perform SQLite operations asynchronously to maintain responsiveness in a .NET Multi-platform App UI (MAUI) app"
8-
ms.date: 10/13/2023
8+
ms.date: 11/11/2024
99
author: codemillmatt
1010
ms.author: masoucou
1111
ms.topic: unit

learn-pr/dot-net-maui/store-local-data/7-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
unitType: summary
66
title: "Summary"
77
description: Summary"
8-
ms.date: 10/13/2023
8+
ms.date: 11/11/2024
99
author: codemillmatt
1010
ms.author: masoucou
1111
ms.topic: unit

learn-pr/dot-net-maui/store-local-data/includes/4-exercise-store-data-locally-with-sqlite.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,10 @@ In this exercise, you use SQLite to store information locally with an applicatio
3939
```csharp
4040
namespace People.Models
4141
{
42-
4342
public class Person
4443
{
45-
public int Id { get; set; }
46-
public string Name { get; set; }
44+
public int Id { get; set; }
45+
public string Name { get; set; }
4746
}
4847
}
4948
```

learn-pr/dot-net-maui/store-local-data/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
moduleType: standard
55
title: "Store local data with SQLite in a .NET MAUI app"
66
description: "Learn how to store and access data held in SQLite using a .NET Multi-platform App UI (MAUI) app"
7-
ms.date: 10/10/2023
7+
ms.date: 11/11/2024
88
author: codemillmatt
99
ms.author: masoucou
1010
ms.topic: module

0 commit comments

Comments
 (0)