-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document C# 8 nullable reference types
- Loading branch information
Showing
12 changed files
with
266 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
entity-framework/core/miscellaneous/nullable-reference-types.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
--- | ||
title: Nullable reference types - EF Core | ||
author: roji | ||
ms.date: 10/27/2016 | ||
ms.assetid: ddaa0a54-9f43-4c34-aae3-f95c96c69842 | ||
uid: core/miscellaneous/nullable-reference-types | ||
--- | ||
# Nullable Reference Types | ||
|
||
C# 8 introduced a new feature called [nullable reference types](/dotnet/csharp/tutorials/nullable-reference-types), allowing reference types to be annotated, indicating whether it is valid for them to contain null or not. If you are new to this feature, it is recommended that make yourself familiar with it by reading the C# docs. | ||
|
||
This page introduces EF Core's support fo nullable reference types, and describes best practices for working with them. | ||
|
||
## Required and optional properties | ||
|
||
If nullable reference types are enabled, EF Core will by convention configure reference properties as required or optional based on their C# type nullability. For example, properties with type `string` will be configured as required, while properties with type `string?` will be configured as optional. | ||
|
||
[!code-csharp[Main](../../../samples/core/Miscellaneous/NullableReferenceTypes/Customer.cs?highlight=7-9)] | ||
|
||
Using nullable reference types is recommended since it flows the nullability expressed in C# code to EF Core's model and to the database, and obviates the use of the Fluent API or Data Annotations to express the same concept twice. | ||
|
||
> [!NOTE] | ||
> Exercise caution when enabling nullable reference types on an existing project: reference type properties which were previously configured as optional will now be configured as required, unless they are explicitly annotated to be nullable. When managing a relational database schema, this may cause migrations to be generated which alter the database column's nullability. | ||
## DbContext and DbSet | ||
|
||
When nullable reference types are enabled, the C# compiler emits warnings for any uninitialized non-nullable property, as these would contain null. As a result, the common practice of defining a non-nullable `DbSet` on a context will now generate a warning. However, EF Core always initializes all `DbSet` properties on DbContext-derived types, so they are guaranteed to never be null, even if the compiler is unaware of this. Therefore, it is recommended to keep your `DbSet` properties non-nullable - allowing you to access them without null checks - and to silence the compiler warnings by explicitly setting them to null with the help of the null-forgiving operator (!): | ||
|
||
[!code-csharp[Main](../../../samples/core/Miscellaneous/NullableReferenceTypes/Required.cs?highlight=14)] | ||
|
||
## Non-nullable properties and initialization | ||
|
||
Compiler warnings for uninitialized non-nullable reference types are also a problem for regular properties on your entity types. In our example above, we avoided these warnings by using [constructor binding](core/modeling/constructors), a feature which works perfectly with non-nullable properties, ensuring they are always initialized. However, in some scenarios constructor binding isn't an option: navigation properties, for example, cannot be initialized in this way. Required navigation properties present an additional difficulty: although a dependent will always exist for a given principal, it may or may not be loaded by a particular query, depending on the needs at that point in the program ([see the different patterns for loading data](xref:core/querying/related-data)). At the same time, it is undesirable to make these properties nullable, since that would force all access to them to check for null, even if they are required. | ||
|
||
One way to deal with these scenarios, is to have a non-nullable property with a nullable [backing field](xref:core/modeling/backing-field): | ||
|
||
[!code-csharp[Main](../../../samples/core/Miscellaneous/NullableReferenceTypes/Order.cs?highlight=12-17)] | ||
|
||
Since the navigation property is non-nullable, a required navigation is configured; and as long as the navigation is properly loaded, the dependent will be accessible via the property. If, however, the property is accessed without first properly loading the related entity, an InvalidOperationException is thrown, since the API contract has been used incorrectly. | ||
|
||
As a terser alternative, it is possible to simply initialize the property to null with the help of the null-forgiving operator (!): | ||
|
||
[!code-csharp[Main](../../../samples/core/Miscellaneous/NullableReferenceTypes/Order.cs?highlight=19)] | ||
|
||
An actual null value will never be observed except as a result of a programming bug, e.g. accessing the navigation property without properly loading the related entity beforehand. | ||
|
||
> [!NOTE] | ||
> Collection navigations, which contain references to multiple related entities, should always be non-nullable. An empty collection means that no related entities exist, but the list itself should never be null. | ||
## Navigating and including nullable relationships | ||
|
||
When dealing with optional relationships, it's possible to encounter compiler warnings where an actual null reference exception would be impossible. When translating and executing your LINQ queries, EF Core guarantees that if an optional related entity does not exist, any navigation to it will simply be ignored, rather than throwing. However, the compiler is unaware of this EF Core guarantee, and produces warnings as if the LINQ query were executed in memory, with LINQ to Objects. As a result, it is necessary to use the null-forgiving operator (!) to inform the compiler that an actual null value isn't possible: | ||
|
||
[!code-csharp[Main](../../../samples/core/Miscellaneous/NullableReferenceTypes/Program.cs?highlight=46)] | ||
|
||
A similar issue occurs when including multiple levels of relationships across optional navigations: | ||
|
||
[!code-csharp[Main](../../../samples/core/Miscellaneous/NullableReferenceTypes/Program.cs?highlight=37)] | ||
|
||
If you find yourself doing this a lot, and the entity types in question are predominantly (or exclusively) used in EF Core queries, consider making the navigation properties non-nullable, and to configure them as optional via the Fluent API or Data Annotations. This will remove all compiler warnings while keeping the relationship optional; however, if your entities are traversed outside of EF Core, you may observe null values although the properties are annotated as non-nullable. | ||
|
||
## Scaffolding | ||
|
||
[The C# 8 nullable reference type feature](/dotnet/csharp/tutorials/nullable-reference-types) is currently unsupported in reverse engineering: EF Core always generates C# code that assumes the feature is off. For example, nullable text columns will be scaffolded as a property with type `string` , not `string?`, with either the Fluent API or Data Annotations used to configure whether a property is required or not. You can edit the scaffolded code and replace these with C# nullability annotations. Scaffolding support for nullable reference types is tracked by issue [#15520](https://github.com/aspnet/EntityFrameworkCore/issues/15520). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
samples/core/Miscellaneous/NullableReferenceTypes/Address.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace NullableReferenceTypes | ||
{ | ||
#region OrderDetails | ||
public class Address | ||
{ | ||
public int Id { get; set; } | ||
public string City { get; set; } | ||
public string Street { get; set; } | ||
|
||
public Address(string city, string street) | ||
{ | ||
City = city; | ||
Street = street; | ||
} | ||
} | ||
#endregion | ||
} |
19 changes: 19 additions & 0 deletions
19
samples/core/Miscellaneous/NullableReferenceTypes/Customer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
namespace NullableReferenceTypes | ||
{ | ||
#region Customer | ||
public class Customer | ||
{ | ||
public int Id { get; set; } | ||
public string FirstName { get; set; } | ||
public string LastName { get; set; } | ||
public string? MiddleName { get; set; } | ||
|
||
public Customer(string firstName, string lastName, string? middleName = null) | ||
{ | ||
FirstName = firstName; | ||
LastName = lastName; | ||
MiddleName = middleName; | ||
} | ||
} | ||
#endregion | ||
} |
13 changes: 13 additions & 0 deletions
13
samples/core/Miscellaneous/NullableReferenceTypes/ExtraOptionalOrderInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace NullableReferenceTypes | ||
{ | ||
public class ExtraOptionalOrderInfo | ||
{ | ||
public int Id { get; set; } | ||
public string SomeExtraAdditionalInfo { get; set; } | ||
|
||
public ExtraOptionalOrderInfo(string someExtraAdditionalInfo) | ||
{ | ||
SomeExtraAdditionalInfo = someExtraAdditionalInfo; | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
samples/core/Miscellaneous/NullableReferenceTypes/NullableReferenceTypes.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
<LangVersion>8.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.0.0-preview9.19423.6" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.0.0-preview9.19423.6" /> | ||
</ItemGroup> | ||
|
||
</Project> |
14 changes: 14 additions & 0 deletions
14
samples/core/Miscellaneous/NullableReferenceTypes/NullableReferenceTypesContext.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace NullableReferenceTypes | ||
{ | ||
public class NullableReferenceTypesContext : DbContext | ||
{ | ||
public DbSet<Customer> Customers { get; set; } = null!; | ||
public DbSet<Order> Orders { get; set; } = null!; | ||
|
||
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) | ||
=> optionsBuilder | ||
.UseSqlServer(@"Server=(localdb)\mssqllocaldb;Database=EFNullableReferenceTypes;Trusted_Connection=True;ConnectRetryCount=0"); | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
samples/core/Miscellaneous/NullableReferenceTypes/OptionalOrderInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace NullableReferenceTypes | ||
{ | ||
public class OptionalOrderInfo | ||
{ | ||
public int Id { get; set; } | ||
public string AdditionalInfo { get; set; } | ||
public ExtraOptionalOrderInfo? ExtraAdditionalInfo { get; set; } | ||
|
||
public OptionalOrderInfo(string additionalInfo) | ||
{ | ||
AdditionalInfo = additionalInfo; | ||
} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
samples/core/Miscellaneous/NullableReferenceTypes/Order.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System; | ||
|
||
namespace NullableReferenceTypes | ||
{ | ||
#region Order | ||
public class Order | ||
{ | ||
public int Id { get; set; } | ||
|
||
private Address? _shippingAddress; | ||
|
||
public Address ShippingAddress | ||
{ | ||
set => _shippingAddress = value; | ||
get => _shippingAddress | ||
?? throw new InvalidOperationException("Uninitialized property: " + nameof(ShippingAddress)); | ||
} | ||
|
||
public Product Product { get; set; } = null!; | ||
|
||
public OptionalOrderInfo? OptionalInfo { get; set; } | ||
} | ||
#endregion | ||
} |
13 changes: 13 additions & 0 deletions
13
samples/core/Miscellaneous/NullableReferenceTypes/Product.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace NullableReferenceTypes | ||
{ | ||
public class Product | ||
{ | ||
public int Id { get; set; } | ||
public string Name { get; set; } | ||
|
||
public Product(string name) | ||
{ | ||
Name = name; | ||
} | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
samples/core/Miscellaneous/NullableReferenceTypes/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
using System; | ||
using System.Linq; | ||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace NullableReferenceTypes | ||
{ | ||
public static class Program | ||
{ | ||
static void Main(string[] args) | ||
{ | ||
using (var context = new NullableReferenceTypesContext()) | ||
{ | ||
context.Database.EnsureDeleted(); | ||
context.Database.EnsureCreated(); | ||
|
||
context.Add(new Customer("John", "Doe")); | ||
|
||
context.Add(new Order | ||
{ | ||
ShippingAddress = new Address("London", "Downing"), | ||
Product = new Product("Cooking stove"), | ||
OptionalInfo = new OptionalOrderInfo("Some additional info") | ||
{ | ||
ExtraAdditionalInfo = new ExtraOptionalOrderInfo("Some extra additional info") | ||
} | ||
}); | ||
|
||
context.SaveChanges(); | ||
} | ||
|
||
using (var context = new NullableReferenceTypesContext()) | ||
{ | ||
var john = context.Customers.First(c => c.FirstName == "John"); | ||
Console.WriteLine("John's last name: " + john.LastName); | ||
|
||
var order = context.Orders | ||
.Include(o => o.OptionalInfo!) | ||
.ThenInclude(op => op.ExtraAdditionalInfo) | ||
.Single(); | ||
|
||
// The following would be a programming bug: we forgot to include ShippingAddress above. It would throw InvalidOperationException. | ||
// Console.WriteLine(order.ShippingAddress.City); | ||
// The following would be a programming bug: we forgot to include Product above; will throw NullReferenceException. It would throw NullReferenceException. | ||
// Console.WriteLine(order.Product.Name); | ||
|
||
Console.WriteLine(order.OptionalInfo!.ExtraAdditionalInfo!.SomeExtraAdditionalInfo); | ||
} | ||
} | ||
} | ||
} |