Это видео недоступно.
Сожалеем об этом.

.NET 7 SQLite Database CRUD Operations in Web API using Entity Framework Core

Поделиться
HTML-код
  • Опубликовано: 14 авг 2024
  • Table of Contents:
    00:00 | Introduction to SQLite CRUD Operation in EFCore.
    01:52 | Creating Web API project.
    04:44 | Installing EFCore, EFCore.Tools NuGet packages.
    06:00 | Setting up database connection string in appsettings.json.
    06:36 | Registering database connection in program.cs file.
    07:48 | Installing EFcore.SQLite NuGet package.
    09:05 | Creating Application Db Context class.
    10:19 | Creating User model.
    11:37 | Adding Database-Migration.
    13:54 | Adding User API Controller.
    14:50 | Creating Constructor to inject database connection.
    15:05 | Adding CREATE action method / operation.
    18:27 | Adding READ action method / operation.
    20:47 | Adding UPDATE action method / operation.
    23:38 | Adding DELETE action method / operation.
    25:25 | Using DB Browser for SQLite to access the SQLite db.
    Download source code | github.com/Cod...
    Related Videos
    • .NET 7 SQLite Database... | SQLite Database CRUD Operations in Web API using Entity Framework Core.
    • .NET 7 SQL Server CRUD... | SQL Server CRUD Operations in Web API using Entity Framework Core.
    • .NET 7 EFCore All Rela... | EFCore Relationships (One-to-One, One-to-Many, Many-to-Many) in Web API with SQL Server.
    • .NET 7 AutoMapper Data... | AutoMapper Data Transfer Objects DTOs explained
    • .NET 7 Navigation Comp... | Navigation Component in Blazor Web Assembly using NavigationLock
    • .NET 7 Object Relation... | Object Relational Mapper ORM Explained for Everyone
    • .NET EFCore | Scaffold... | Scaffold SQL Database with DB First migration in Web API using EntityFrameworkCore.
    • .NET EFCore | Web API ... | Web API EntityFrameworkCore (EF7) Pagination using Skip() and Take() methods.
    • .NET EFCore | Send Ema... | Send Email in Web API using Mailkit SMTP.
    • .NET EFCore | AutoMapp... | AutoMapper Data Transfer Objects DTO with Web API Explained.
    • Video | Blazor WebAssembly Chat with SignalR using WebSockets.
    • .NET EFCore | Create J... | Create JSON Web Token (JWT) for User Registration and Login using Password Hash and Salt.
    • .NET EFCore | EFCore A... | EFCore All Relationships (11, 1n, nn ) with Entity Framework Core SQL Server.
    • .NET EFCore | Read JWT... | Web API Role - Based Authorization with JSON Web Token (JWT).
    What is SQLite?
    SQLite is a database engine written in the C programming language. It is not a standalone app; rather, it is a library that software developers embed in their apps. As such, it belongs to the family of embedded databases.
    What is SQLite used for?
    SQLite is used to develop embedded software for devices like televisions, cell phones, cameras, etc. It can manage low to medium-traffic HTTP requests. SQLite can change files into smaller size archives with lesser metadata. SQLite is used as a temporary dataset to get processed with some data within an application.
    What is CRUD in API?
    CRUD stands for Create, Read, Update, and Delete, which make up these four fundamental operations. Because REST API calls invoke CRUD operations, understanding their relationship with one another is important for API developers and data engineers.

Комментарии • 3

  • @CodingCardSharp
    @CodingCardSharp 4 месяца назад

    Great video!
    I built an app that uses an SQLite Database, although I will need to switch this to an SQL Server (or PostgreSQL) DB for production purposes. Will it be difficult or problematic to change this to use an SQL Server database instead? How long should it take the average programmer to make these changes?

  • @chanduninethmini980
    @chanduninethmini980 4 месяца назад

    Amazing Video. Thank you💖

  • @nipunaudayantha9303
    @nipunaudayantha9303 4 месяца назад

    Woow good job bro