Skip to content

Commit e958f35

Browse files
authored
Merge branch 'main' into merge/release/9.0-to-main
2 parents c065418 + 540b7c1 commit e958f35

File tree

766 files changed

+71017
-46170
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

766 files changed

+71017
-46170
lines changed

.config/guardian/gdnbaselines

Lines changed: 917 additions & 0 deletions
Large diffs are not rendered by default.

.devcontainer/devcontainer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "EF Core dev environment",
3+
"dockerComposeFile": "docker-compose.yml",
4+
"service": "devcontainer",
5+
"workspaceFolder": "/workspace",
6+
"customizations": {
7+
"vscode": {
8+
"extensions": [
9+
"ms-dotnettools.csdevkit",
10+
"EditorConfig.EditorConfig"
11+
],
12+
"settings": {
13+
"dotnet.dotnetPath": "${containerWorkspaceFolder}/efcore/.dotnet"
14+
}
15+
}
16+
},
17+
"remoteEnv": {
18+
"PATH": "${containerWorkspaceFolder}/efcore/.dotnet:${containerEnv:PATH}"
19+
},
20+
"onCreateCommand": "${containerWorkspaceFolder}/efcore/restore.sh"
21+
}

.devcontainer/docker-compose.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: '3.8'
2+
services:
3+
devcontainer:
4+
image: mcr.microsoft.com/dotnet/sdk:9.0
5+
volumes:
6+
- ..:/workspace/efcore:cached
7+
tty: true

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.cs diff=csharp
33
*.sh eol=lf
44
*.sln eol=crlf
5+
*.sql diff

.github/CODEOWNERS

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33

44
/azure-pipelines.yml @AndriySvyryd @maumar
55
/azure-pipelines-public.yml @AndriySvyryd @maumar
6+
/github-merge-flow.jsonc @AndriySvyryd @maumar
7+
/global.json @AndriySvyryd @maumar
8+
/NuGet.config @AndriySvyryd @maumar
9+
/.config/ @AndriySvyryd
10+
/.github/ @dotnet/efteam
611
/eng/ @AndriySvyryd @maumar
7-
/eng/common/ @dotnet-maestro-bot @AndriySvyryd @maumar
8-
/eng/Versions.props @dotnet-maestro-bot @AndriySvyryd @maumar
9-
/eng/Version.Details.xml @dotnet-maestro-bot @AndriySvyryd @maumar
12+
/src/ @dotnet/efteam
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
name: 🐛 Bug in Entity Framework Core
2+
description: Create a report about something that isn't working in Entity Framework Core.
3+
labels: ["customer-reported"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |-
8+
Remember:
9+
10+
* Please check that the [documentation](https://docs.microsoft.com/ef/) does not explain the behavior you are seeing.
11+
* Please search in both [open](https://github.com/dotnet/efcore/issues) and [closed](https://github.com/dotnet/efcore/issues?q=is%3Aissue+is%3Aclosed) issues to check that your bug has not already been filed.
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Bug description
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: code
20+
attributes:
21+
label: Your code
22+
description: |-
23+
To fix any bug we must first reproduce it. To make this possible, please attach a small, runnable project or post a small, runnable code listing that reproduces what you are seeing.
24+
25+
It is often impossible for us to reproduce a bug when working with only code snippets since we have to guess at the missing code.
26+
render: csharp
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: stack
31+
attributes:
32+
label: Stack traces
33+
description: |-
34+
Include the full exception message and stack trace for any exception you encounter.
35+
render: text
36+
validations:
37+
required: false
38+
- type: textarea
39+
id: output
40+
attributes:
41+
label: Verbose output
42+
description: |-
43+
Include `--verbose` output when filing bugs about the `dotnet ef` or Package Manager Console tools.
44+
render: text
45+
validations:
46+
required: false
47+
- type: input
48+
id: version-efcore
49+
attributes:
50+
label: EF Core version
51+
placeholder: |-
52+
9.0.0
53+
validations:
54+
required: true
55+
- type: input
56+
id: version-provider
57+
attributes:
58+
label: Database provider
59+
placeholder: |-
60+
Microsoft.EntityFrameworkCore.SqlServer
61+
validations:
62+
required: false
63+
- type: input
64+
id: version-target
65+
attributes:
66+
label: Target framework
67+
placeholder: |-
68+
.NET 9.0
69+
validations:
70+
required: false
71+
- type: input
72+
id: version-os
73+
attributes:
74+
label: Operating system
75+
placeholder: |-
76+
Windows 11
77+
validations:
78+
required: false
79+
- type: input
80+
id: version-ide
81+
attributes:
82+
label: IDE
83+
placeholder: |-
84+
Visual Studio 2022 17.4
85+
validations:
86+
required: false
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: 🐛 Bug in Microsoft.Data.Sqlite
2+
description: Create a report about something that isn't working in Microsoft.Data.Sqlite.
3+
labels: ["area-adonet-sqlite", "customer-reported"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |-
8+
Remember:
9+
10+
* Please check that the [documentation](https://docs.microsoft.com/ef/) does not explain the behavior you are seeing.
11+
* Please search in both [open](https://github.com/dotnet/efcore/issues) and [closed](https://github.com/dotnet/efcore/issues?q=is%3Aissue+is%3Aclosed) issues to check that your bug has not already been filed.
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Bug description
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: code
20+
attributes:
21+
label: Your code
22+
description: |-
23+
To fix any bug we must first reproduce it. To make this possible, please attach a small, runnable project or post a small, runnable code listing that reproduces what you are seeing.
24+
25+
It is often impossible for us to reproduce a bug when working with only code snippets since we have to guess at the missing code.
26+
render: csharp
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: stack
31+
attributes:
32+
label: Stack traces
33+
description: |-
34+
Include the full exception message and stack trace for any exception you encounter.
35+
render: text
36+
validations:
37+
required: false
38+
- type: input
39+
id: version-mds
40+
attributes:
41+
label: Microsoft.Data.Sqlite version
42+
placeholder: |-
43+
9.0.0
44+
validations:
45+
required: true
46+
- type: input
47+
id: version-target
48+
attributes:
49+
label: Target framework
50+
placeholder: |-
51+
.NET 9.0
52+
validations:
53+
required: false
54+
- type: input
55+
id: version-os
56+
attributes:
57+
label: Operating system
58+
placeholder: |-
59+
Windows 11
60+
validations:
61+
required: false
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
name: ❓ Ask a question
2+
description: Ask a question about Entity Framework Core or Microsoft.Data.Sqlite.
3+
labels: ["customer-reported"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |-
8+
Remember:
9+
10+
* Please make your question as clear and specific as possible.
11+
* Please check that the [documentation](https://docs.microsoft.com/ef/) does not answer your question.
12+
* Please search in both [open](https://github.com/dotnet/efcore/issues) and [closed](https://github.com/dotnet/efcore/issues?q=is%3Aissue+is%3Aclosed) issues to check that your question has not already been answered.
13+
- type: textarea
14+
id: description
15+
attributes:
16+
label: Question
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: code
21+
attributes:
22+
label: Your code
23+
description: |-
24+
Usually the best way to ask a clear question and get a quick response is to show your code. Preferably, attach a small, runnable project or post a small, runnable code listing that reproduces what you are seeing.
25+
render: csharp
26+
validations:
27+
required: false
28+
- type: textarea
29+
id: stack
30+
attributes:
31+
label: Stack traces
32+
description: |-
33+
Include the full exception message and stack trace for any exception you encounter.
34+
render: text
35+
validations:
36+
required: false
37+
- type: textarea
38+
id: output
39+
attributes:
40+
label: Verbose output
41+
description: |-
42+
Include `--verbose` output when filing bugs about the `dotnet ef` or Package Manager Console tools.
43+
render: text
44+
validations:
45+
required: false
46+
- type: input
47+
id: version-efcore
48+
attributes:
49+
label: EF Core version
50+
placeholder: |-
51+
9.0.0
52+
validations:
53+
required: true
54+
- type: input
55+
id: version-provider
56+
attributes:
57+
label: Database provider
58+
placeholder: |-
59+
Microsoft.EntityFrameworkCore.SqlServer
60+
validations:
61+
required: false
62+
- type: input
63+
id: version-target
64+
attributes:
65+
label: Target framework
66+
placeholder: |-
67+
.NET 9.0
68+
validations:
69+
required: false
70+
- type: input
71+
id: version-os
72+
attributes:
73+
label: Operating system
74+
placeholder: |-
75+
Windows 11
76+
validations:
77+
required: false
78+
- type: input
79+
id: version-ide
80+
attributes:
81+
label: IDE
82+
placeholder: |-
83+
Visual Studio 2022 17.4
84+
validations:
85+
required: false
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 💡 Feature request
2+
description: Suggest an idea for this project.
3+
labels: ["type-enhancement", "customer-reported"]
4+
body:
5+
- type: textarea
6+
id: problem
7+
attributes:
8+
label: What problem are you trying to solve?
9+
validations:
10+
required: true
11+
- type: textarea
12+
id: solution
13+
attributes:
14+
label: Describe the solution you'd like
15+
validations:
16+
required: false

.github/ISSUE_TEMPLATE/ask_a_question.md

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)