-
Book Overview & Buying
-
Table Of Contents
Building Modern SaaS Applications with C# and .NET
By :
There are a number of text conventions used throughout this book.
Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “The Up method creates the table in the database, and the Down method drops the table. This is converted into SQL code, which is issued to the database engine when the database update command is issued. “
A block of code is set as follows:
[HttpPut("{id}")]
public async Task<IActionResult> UpdateAsync(int id, UpdateHabitDto request)
{
var habit = await _habitService.UpdateById(id, request);
if (habit == null)
{
return NotFound();
}
return Ok(habit);
}
Tips or important notes
Appear like this.
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “Sara clicks on the Add New button under the list of habits.”