{"id":880,"date":"2023-11-28T11:53:15","date_gmt":"2023-11-28T11:53:15","guid":{"rendered":"https:\/\/www.softwaretraininginchennai.com\/blog\/?p=880"},"modified":"2024-02-21T07:34:45","modified_gmt":"2024-02-21T07:34:45","slug":"learn-dotnet-core-online","status":"publish","type":"post","link":"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/","title":{"rendered":"Learn DOTNET Core Online"},"content":{"rendered":"<p><strong><span style=\"color: #993366;\">Overview of DOTNET Core: A Contemporary Framework for Cross-Platform Development<\/span><\/strong><\/p>\n<p>Microsoft created the free, open-source, cross-platform DOTNET Core framework to help developers create contemporary, scalable applications. With its modular design and lightweight architecture, it offers a substantial departure from the conventional DOTNET Framework and supports a broad variety of application kinds. We&#8217;ll go over the main benefits and features that make DOTNET Core a desirable option for developers in this introduction.<\/p>\n<p><strong>\u00a0<\/strong><\/p>\n<p><strong>Principal attributes:\u00a0<\/strong><\/p>\n<p><span style=\"color: #0000ff;\">1. Cross-Platform Interoperability:<\/span> With the help of DOTNET Core, programmers can create and execute apps for Windows, Linux, and macOS. For contemporary development scenarios, where applications must be deployed on various environments, cross-platform support is essential.<\/p>\n<p><span style=\"color: #0000ff;\">2. High-performance and modular:<\/span> Because DOTNET Core is modular by design, developers can include only the parts that are required for their application. Its modularity makes it perfect for microservices and cloud-native apps because it reduces footprint and speeds up startup times.<\/p>\n<p><span style=\"color: #0000ff;\">3. Community-driven and Open Source:<\/span> The framework is being developed as an open-source project to encourage community contributions and collaboration. This openness encourages transparency and creativity while guaranteeing that developers can take an active role in the framework&#8217;s evolution.<\/p>\n<p><span style=\"color: #0000ff;\">4. Combined Platform for Various Tasks:<\/span> Cloud-native microservices, cross-platform desktop apps with Xamarin, and web development with ASP DOTNET Core are just a few of the workloads that can be combined into one cohesive platform with DOTNET Core. Because of its adaptability, developers can use the same set of tools and libraries for various kinds of applications.<\/p>\n<p><span style=\"color: #0000ff;\">5. Modern Development Practices Support:<\/span> DOTNET Core supports contemporary development practices such as Docker containerization, continuous integration and deployment (CI\/CD), and microservices architecture. These characteristics make it ideal for developing and deploying scalable, cloud-ready applications.<\/p>\n<p><span style=\"color: #0000ff;\">6. Comparative Versioning:<\/span> In contrast to the conventional DOTNET Framework, side-by-side versioning is supported by DOTNET Core. This enables applications to use the version of the runtime and libraries that they were built with by allowing multiple versions to coexist on the same machine.<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #993366;\">DOTNET Core components include:<\/span><\/p>\n<p><span style=\"color: #0000ff;\">1. DOTNET Core Runtime:<\/span> The Common Language Runtime (CLR) and Just-In-Time (JIT) compilation are two of the runtime&#8217;s key components that are required to run DOTNET Core applications.<\/p>\n<p><span style=\"color: #0000ff;\">2. Core Libraries for.NET:<\/span> These libraries offer common functionality for applications built with DOTNET Core. They consist of networking, file I\/O, data structures, and algorithms, among other things.<\/p>\n<p><span style=\"color: #0000ff;\">3. ASP DOTNET Core:<\/span> A cross-platform, high-performance framework for creating contemporary, cloud-based, and internet-connected apps is called ASP DOTNET Core. It&#8217;s frequently utilized for creating microservices, APIs, and web apps.<\/p>\n<p><span style=\"color: #0000ff;\">4. Entity Framework Core:<\/span> An open-source, lightweight, and extensible object-relational mapping (ORM) framework is called Entity Framework Core. It makes working with databases using C# objects easier for developers by streamlining persistence and data access.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Getting Started:<\/strong><\/p>\n<p>Setting up your development environment, starting a new project, and learning the core principles of ASP DOTNET Core are the first steps in getting started with the framework. Here is a step-by-step tutorial to get you started with ASP DOTNET Core web application development.<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #800000;\"><strong>Step 1: Install Prerequisites<\/strong><\/span><\/p>\n<p>Make sure the following is installed on your computer before you begin:<\/p>\n<p><span style=\"color: #339966;\">a.) DOTNET SDK: <\/span>The DOTNET SDK can be downloaded and installed from the official DOTNET website: Get the DOTNET SDK here.<\/p>\n<p><span style=\"color: #339966;\">b.) Code Editor: <\/span>Select a code editor for your project. Although Visual Studio Code is a well-liked option, you are free to use any other code editor of your choosing.<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #800000;\"><strong>Step 2: Create\u00a0a New Project for ASP DOTNET Core<\/strong><\/span><\/p>\n<p>To start a new ASP DOTNET Core project, launch a terminal or command prompt and type the following commands:<\/p>\n<p><span style=\"color: #0000ff;\"><strong># Create a new folder for your project<\/strong><\/span><\/p>\n<p><span style=\"color: #339966;\"><strong>mkdir MyFirstAspNetCoreApp<\/strong><\/span><\/p>\n<p><span style=\"color: #339966;\"><strong>cd MyFirstAspNetCoreApp<\/strong><\/span><\/p>\n<p><span style=\"color: #0000ff;\"><strong># Create a new ASP DOTNET Core web application<\/strong><\/span><\/p>\n<p><span style=\"color: #339966;\"><strong>dotnet new web -n MyFirstAspNetCoreApp<\/strong><\/span><\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #800000;\"><strong>Step 3: Explore the Project Structure<\/strong><\/span><\/p>\n<p>Go to the project folder and examine the project hierarchy. Important documents and directories consist of:<\/p>\n<p><span style=\"color: #339966;\">Program.cs:<\/span> Program.cs is the\u00a0application&#8217;s entry point.<\/p>\n<p><span style=\"color: #339966;\">Startup.cs:<\/span> Startup.cs is responsible for configuring the application&#8217;s services and middleware.<\/p>\n<p><span style=\"color: #339966;\">wwwroot:<\/span> Static files (CSS, JavaScript, images) are stored in the wwwroot directory.<\/p>\n<p><span style=\"color: #339966;\">Controllers:<\/span> The controllers that handle requests are listed here.<\/p>\n<p><span style=\"color: #339966;\">Views:<\/span> This collection contains the views that define the user interface.<\/p>\n<p><span style=\"color: #339966;\">Models:<\/span> Contains the data models that the application employs.<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #800000;\"><strong>Step 4: Run\u00a0the Program<\/strong><\/span><\/p>\n<p>To build and run the application, use the following command:<\/p>\n<p><strong><span style=\"color: #339966;\">dotnet run<\/span><\/strong><\/p>\n<p>Navigate to <span style=\"color: #0000ff;\">https:\/\/localhost:1001\u00a0(or http:\/\/localhost:1002)<\/span> in a web browser. The default ASP DOTNET Core welcome page should appear.<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #800000;\"><strong>Step 5: Make a Simple Modification<\/strong><\/span><\/p>\n<p>In your code editor, open the project. There is an action method called Index in the <span style=\"color: #339966;\">Controllers\/HomeController.cs<\/span> file. Modify the <span style=\"color: #339966;\">ViewBag&#8217;s content.Message<\/span> to another entity. As an example:<\/p>\n<p><strong><span style=\"color: #339966;\">public IActionResult Index()<\/span><\/strong><\/p>\n<p><strong><span style=\"color: #339966;\">{<\/span><\/strong><\/p>\n<p><strong><span style=\"color: #339966;\">\u00a0\u00a0\u00a0 ViewBag.Message = &#8220;Hello, ASPDOTNETCore!&#8221;;<\/span><\/strong><\/p>\n<p><strong><span style=\"color: #339966;\">\u00a0\u00a0\u00a0 return View();<\/span><\/strong><\/p>\n<p><strong><span style=\"color: #339966;\">}<\/span><\/strong><\/p>\n<p>When you save the file, the web application will reload with your changes.<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #800000;\"><strong>Step 6: Also, Understand the Fundamentals<\/strong><\/span><\/p>\n<p>Explore the following fundamental concepts:<\/p>\n<p>Routing: Learn about URL routing in ASP DOTNET Core. Route configurations can be found in the Startup.cs file.<\/p>\n<p>Views and Razor Pages: Discover how to make views with Razor syntax. Static files can be found in the Views and wwwroot folders.<\/p>\n<p>Dependency Injection: Learn how to configure dependency injection in ASP DOTNET Core. For service registration, look in the Startup.cs file.<\/p>\n<p>Middleware: Discover the elements of middleware and how the Startup.cs file configures them.<\/p>\n<p>As you gain more familiarity with the fundamentals of ASP DOTNET Core development, you should also think about exploring more complex subjects like database access, authentication, and deployment.<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #993366;\">Begin your journey today,\u00a0<strong>for Training \/ Technical Support, Contact +91 90427 10472<\/strong><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Overview of DOTNET Core: A Contemporary Framework for Cross-Platform Development Microsoft created the free, open-source, cross-platform DOTNET Core framework to help developers create contemporary, scalable applications. With its modular design and lightweight architecture, it offers a substantial departure from the conventional DOTNET Framework and supports a broad variety of application kinds. We&#8217;ll go over the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[277,2,3,299,295,298,297,4,296,6,279,234],"tags":[308,289],"class_list":["post-880","post","type-post","status-publish","format-standard","hentry","category-asp-net-core","category-dot-net-training","category-dot-net-training-in-chennai","category-dotnet-training-in-karaikudi","category-dotnet-training-in-madurai","category-dotnet-training-in-pudukottai","category-dotnet-training-in-trichy","category-information-on-dotnet","category-learn-dotnet-core-online","category-mvc-training-tutorials","category-oop-concept","category-sql-server","tag-asp-dotnet-core","tag-mvc-framework"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Learn DOTNET Core Online | Maria Academy<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Learn DOTNET Core Online | Maria Academy\" \/>\n<meta property=\"og:description\" content=\"Overview of DOTNET Core: A Contemporary Framework for Cross-Platform Development Microsoft created the free, open-source, cross-platform DOTNET Core framework to help developers create contemporary, scalable applications. With its modular design and lightweight architecture, it offers a substantial departure from the conventional DOTNET Framework and supports a broad variety of application kinds. We&#8217;ll go over the [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/\" \/>\n<meta property=\"og:site_name\" content=\"Maria Academy\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DotnetTrainingChennai\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-28T11:53:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-21T07:34:45+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dotnettraining2\" \/>\n<meta name=\"twitter:site\" content=\"@dotnettraining2\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e\"},\"headline\":\"Learn DOTNET Core Online\",\"datePublished\":\"2023-11-28T11:53:15+00:00\",\"dateModified\":\"2024-02-21T07:34:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/\"},\"wordCount\":930,\"commentCount\":0,\"keywords\":[\"asp dotnet core\",\"MVC framework\"],\"articleSection\":[\"ASP.NET Core\",\"dot net training\",\"dot net training in chennai\",\"dotnet training in karaikudi\",\"dotnet training in madurai\",\"dotnet training in pudukottai\",\"dotnet training in Trichy\",\"information on dotnet\",\"learn dotnet core online\",\"MVC Training Tutorials\",\"OOP Concept\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/\",\"url\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/\",\"name\":\"Learn DOTNET Core Online | Maria Academy\",\"isPartOf\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#website\"},\"datePublished\":\"2023-11-28T11:53:15+00:00\",\"dateModified\":\"2024-02-21T07:34:45+00:00\",\"author\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Learn DOTNET Core Online\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#website\",\"url\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/\",\"name\":\"Maria Academy\",\"description\":\"Dot Net Training in Chennai, Best Dot Net Training Institute in Chennai, .Net Training in Chennai\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g\",\"caption\":\"admin\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Learn DOTNET Core Online | Maria Academy","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/","og_locale":"en_US","og_type":"article","og_title":"Learn DOTNET Core Online | Maria Academy","og_description":"Overview of DOTNET Core: A Contemporary Framework for Cross-Platform Development Microsoft created the free, open-source, cross-platform DOTNET Core framework to help developers create contemporary, scalable applications. With its modular design and lightweight architecture, it offers a substantial departure from the conventional DOTNET Framework and supports a broad variety of application kinds. We&#8217;ll go over the [&hellip;]","og_url":"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/","og_site_name":"Maria Academy","article_publisher":"https:\/\/www.facebook.com\/DotnetTrainingChennai","article_published_time":"2023-11-28T11:53:15+00:00","article_modified_time":"2024-02-21T07:34:45+00:00","author":"admin","twitter_card":"summary_large_image","twitter_creator":"@dotnettraining2","twitter_site":"@dotnettraining2","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/#article","isPartOf":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/"},"author":{"name":"admin","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e"},"headline":"Learn DOTNET Core Online","datePublished":"2023-11-28T11:53:15+00:00","dateModified":"2024-02-21T07:34:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/"},"wordCount":930,"commentCount":0,"keywords":["asp dotnet core","MVC framework"],"articleSection":["ASP.NET Core","dot net training","dot net training in chennai","dotnet training in karaikudi","dotnet training in madurai","dotnet training in pudukottai","dotnet training in Trichy","information on dotnet","learn dotnet core online","MVC Training Tutorials","OOP Concept","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/","url":"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/","name":"Learn DOTNET Core Online | Maria Academy","isPartOf":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#website"},"datePublished":"2023-11-28T11:53:15+00:00","dateModified":"2024-02-21T07:34:45+00:00","author":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e"},"breadcrumb":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/learn-dotnet-core-online\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.softwaretraininginchennai.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Learn DOTNET Core Online"}]},{"@type":"WebSite","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#website","url":"https:\/\/www.softwaretraininginchennai.com\/blog\/","name":"Maria Academy","description":"Dot Net Training in Chennai, Best Dot Net Training Institute in Chennai, .Net Training in Chennai","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.softwaretraininginchennai.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g","caption":"admin"}}]}},"_links":{"self":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts\/880","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/comments?post=880"}],"version-history":[{"count":5,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts\/880\/revisions"}],"predecessor-version":[{"id":982,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts\/880\/revisions\/982"}],"wp:attachment":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/media?parent=880"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/categories?post=880"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/tags?post=880"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}