Skip to content

Commit

Permalink
Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ajcvickers committed Sep 24, 2020
1 parent 7fd9ad7 commit e40f572
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 9 deletions.
10 changes: 8 additions & 2 deletions .github/ISSUE_TEMPLATE/ask_a_question.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ about: Ask a question about Entity Framework Core or Microsoft.Data.Sqlite
labels: customer-reported
---

## Please make your question as clear and specific as possible
## Ask a question

Remember:

* Please make your question as clear and specific as possible.
* Please check that the [documentation](https://docs.microsoft.com/ef/) does not answer your question.
* 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.

### Include your code

Expand Down Expand Up @@ -47,6 +53,6 @@ BlogContext

EF Core version:
Database provider: (e.g. Microsoft.EntityFrameworkCore.SqlServer)
Target framework: (e.g. .NET Core 3.0)
Target framework: (e.g. .NET 5.0)
Operating system:
IDE: (e.g. Visual Studio 2019 16.3)
11 changes: 9 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report_efcore.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@ about: Create a report about something that isn't working
labels: customer-reported
---

## File a bug

Remember:

* Please check that the [documentation](https://docs.microsoft.com/ef/) does not explain the behavior you are seeing.
* 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.

### Include your code

To fix any bug we mus 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.
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.

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.

Expand Down Expand Up @@ -47,6 +54,6 @@ BlogContext

EF Core version:
Database provider: (e.g. Microsoft.EntityFrameworkCore.SqlServer)
Target framework: (e.g. .NET Core 3.0)
Target framework: (e.g. .NET 5.0)
Operating system:
IDE: (e.g. Visual Studio 2019 16.3)
13 changes: 10 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report_sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,18 @@ about: Create a report about something that isn't working
labels: area-adonet-sqlite, customer-reported
---

## File a bug

Remember:

* Please check that the [documentation](https://docs.microsoft.com/ef/) does not explain the behavior you are seeing.
* 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.

### Include your code

To fix any bug we mus 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.
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.

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.
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.

Use triple-tick code fences for any posted code. For example:

Expand All @@ -31,6 +38,6 @@ Unhandled exception. System.NullReferenceException: Object reference not set to
### Include version information

Microsoft.Data.Sqlite version:
Target framework: (e.g. .NET Core 3.0)
Target framework: (e.g. .NET 5.0)
Operating system:

5 changes: 3 additions & 2 deletions src/EFCore/EF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ internal static readonly MethodInfo PropertyMethod

/// <summary>
/// <para>
/// References a given property on an entity instance. This is useful for shadow state properties, for which no CLR property exists. Currently this method can only be used in LINQ queries and can not be used to access the value assigned to a
/// property in other scenarios.
/// References a given property or navigation on an entity instance. This is useful for shadow state properties, for
/// which no CLR property exists. Currently this method can only be used in LINQ queries and can not be used to
/// access the value assigned to a property in other scenarios.
/// </para>
/// <para>
/// Note that this is a static method accessed through the top-level <see cref="EF" /> static type.
Expand Down

0 comments on commit e40f572

Please sign in to comment.