Utbildning
Modul
Implementera en datamodell som inte är relationell - Training
Implementera en datamodell som inte är relationell
Den här webbläsaren stöds inte längre.
Uppgradera till Microsoft Edge och dra nytta av de senaste funktionerna och säkerhetsuppdateringarna, samt teknisk support.
Anteckning
This feature was added under the name of query types. It was later renamed to keyless entity types.
In addition to regular entity types, an EF Core model can contain keyless entity types, which can be used to carry out database queries against data that doesn't contain key values.
Keyless entity types can be defined as follows:
[Keyless]
public class BlogPostsCount
{
public string BlogName { get; set; }
public int PostCount { get; set; }
}
Keyless entity types support many of the same mapping capabilities as regular entity types, like inheritance mapping and navigation properties. On relational stores, they can configure the target database objects and columns via fluent API methods or data annotations.
However, they are different from regular entity types in that they:
[Keyless]
data annotation or a .HasNoKey()
method call.Some of the main usage scenarios for keyless entity types are:
Mapping a keyless entity type to a database object is achieved using the ToTable
or ToView
fluent API. From the perspective of EF Core, the database object specified in this method is a view, meaning that it is treated as a read-only query source and cannot be the target of update, insert or delete operations. However, this does not mean that the database object is actually required to be a database view. It can alternatively be a database table that will be treated as read-only. Conversely, for regular entity types, EF Core assumes that a database object specified in the ToTable
method can be treated as a table, meaning that it can be used as a query source but also targeted by update, delete and insert operations. In fact, you can specify the name of a database view in ToTable
and everything should work fine as long as the view is configured to be updatable on the database.
The following example shows how to use keyless entity types to query a database view.
Dricks
You can view this article's sample on GitHub.
First, we define a simple Blog and Post model:
public class Blog
{
public int BlogId { get; set; }
public string Name { get; set; }
public string Url { get; set; }
public ICollection<Post> Posts { get; set; }
}
public class Post
{
public int PostId { get; set; }
public string Title { get; set; }
public string Content { get; set; }
public int BlogId { get; set; }
}
Next, we define a simple database view that will allow us to query the number of posts associated with each blog:
await db.Database.ExecuteSqlRawAsync(
@"CREATE VIEW View_BlogPostCounts AS
SELECT b.Name, Count(p.PostId) as PostCount
FROM Blogs b
JOIN Posts p on p.BlogId = b.BlogId
GROUP BY b.Name");
Next, we define a class to hold the result from the database view:
public class BlogPostsCount
{
public string BlogName { get; set; }
public int PostCount { get; set; }
}
Next, we configure the keyless entity type in OnModelCreating using the HasNoKey
API.
We use fluent configuration API to configure the mapping for the keyless entity type:
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder
.Entity<BlogPostsCount>(
eb =>
{
eb.HasNoKey();
eb.ToView("View_BlogPostCounts");
eb.Property(v => v.BlogName).HasColumnName("Name");
});
}
Next, we configure the DbContext
to include the DbSet<T>
:
public DbSet<BlogPostsCount> BlogPostCounts { get; set; }
Finally, we can query the database view in the standard way:
var postCounts = await db.BlogPostCounts.ToListAsync();
foreach (var postCount in postCounts)
{
Console.WriteLine($"{postCount.BlogName} has {postCount.PostCount} posts.");
Console.WriteLine();
}
Dricks
Note we have also defined a context level query property (DbSet) to act as a root for queries against this type.
Dricks
To test keyless entity types mapped to views using the in-memory provider, map them to a query via ToInMemoryQuery. See the in-memory provider docs for more information.
Feedback om .NET
.NET är ett öppen källkod projekt. Välj en länk för att ge feedback:
Utbildning
Modul
Implementera en datamodell som inte är relationell - Training
Implementera en datamodell som inte är relationell