Using Entity Framework Core for Data Persistence in ASP.NET Core
Entroduction to Entity Framework Core
Database access code appears throughout web applications. Whether you're building an e-commerce platform, a blog, or the next big thing, you'll likely need to interact with a database.
Unfortunately, interacting with databases from application code is often cumbersome. Many different approaches exist for th ...
Posted on Sat, 09 May 2026 16:33:23 +0000 by scottb1
Integrating MyBatis-Plus with Spring Boot
Core CapabilitiesSeamless Enhancement: Augments MyBatis without altering its original mechanics, ensuring frictionless adoption.Minimal Overhead: Basic CRUD operations are automatically injected upon startup, allowing direct object-oriented manipulation with negligible performance cost.Robust CRUD: Provides built-in generic Mapper and Service i ...
Posted on Sat, 09 May 2026 06:09:47 +0000 by neridaj
CRUD Operations on Databases with Django ORM
What is ORM?
ORM (Object-Relational Mapping) is a technique that lets you interact with your database, like creating tables and performing CRUD operations, using an object-oriented paradigm.
In simpler terms, you can think of a database table as a class, and each record in that table as an instance (object) of that class. Creating a class in Dj ...
Posted on Sat, 09 May 2026 03:00:04 +0000 by Dixen
Integrating MyBatis with Spring Framework
MyBatis-Spring Integration
Before diving into the integration, let's review the core MyBatis components.
Entity Class
package com.example.entity;
public class User {
private Integer id;
private String username;
private String password;
@Override
public String toString() {
return "User{" +
...
Posted on Thu, 07 May 2026 15:42:21 +0000 by binarymonkey