書名: Mastering Entity Framework Core 2.0作者名: Prabhakaran Anbazhagan本章字數: 60字更新時間: 2021-07-02 21:16:42
Blog entity
The Blog entity/data model we created using the Code First approach is displayed as follows:
public class Blog
{
public int Id { get; set; }
public string Url { get; set; }
public ICollection<Post> Posts { get; set; }
}
We will be using the Blog model to understand the following:
- Principal entity
- Principal key
- Navigational property
推薦閱讀
- Advanced Machine Learning with Python
- The Android Game Developer's Handbook
- 密碼學原理與Java實現
- Mastering QGIS
- Mastering Ubuntu Server
- 軟件項目管理實用教程
- Python語言實用教程
- Learning Docker Networking
- SignalR:Real-time Application Development(Second Edition)
- Go語言入門經典
- Learning Apache Thrift
- C#開發之道
- 代碼整潔之道:程序員的職業素養
- Boost.Asio C++ Network Programming Cookbook
- 思維黑客:讓大腦重裝升級的75個超頻用腦法