- Mastering Entity Framework Core 2.0
- Prabhakaran Anbazhagan
- 182字
- 2021-07-02 21:16:34
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in a text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, and user input are shown as follows: "The new column should be included in the Edit method of PostController."
A block of code is set as follows:
public interface IPostDetailQueryHandler
{
Task<Post> Handle(PostDetailQuery query);
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
public async Task<IActionResult> Index()
{
return View(await _context.Blogs.FromSql("Select *
from dbo.Blog").ToListAsync());
}
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "We can see from the following screenshot that the Url value is unchanged."
Warnings or important notes appear like this.
Tips and tricks appear like this.
- Flutter開發實戰詳解
- R語言游戲數據分析與挖掘
- 物聯網系統開發:從0到1構建IoT平臺(第2版)
- Mastering PHP Design Patterns
- Linux環境編程:從應用到內核
- FFmpeg入門詳解:音視頻原理及應用
- 小學生C++創意編程(視頻教學版)
- C和C++游戲趣味編程
- Scratch趣味編程:陪孩子像搭積木一樣學編程
- 汽車人機交互界面整合設計
- C++ Application Development with Code:Blocks
- Arduino Wearable Projects
- 深入分析GCC
- Getting Started with React VR
- 深度學習入門:基于Python的理論與實現