- 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.
- Expert C++
- Visual FoxPro程序設計教程(第3版)
- 架構不再難(全5冊)
- PhpStorm Cookbook
- Python編程:從入門到實踐
- 從Excel到Python數據分析:Pandas、xlwings、openpyxl、Matplotlib的交互與應用
- Android Studio Cookbook
- 監控的藝術:云原生時代的監控框架
- Java程序設計基礎(第6版)
- 跟戴銘學iOS編程:理順核心知識點
- Penetration Testing with the Bash shell
- JavaScript編程精解(原書第2版)
- Google Adsense優化實戰
- Java程序設計教程
- 深入大型數據集:并行與分布化Python代碼