Материалы по теме 'efcore' | DevsDay.ru

IT-блоги Материалы по теме 'efcore'

IT-блоги Материалы по теме 'efcore'


Разработка dev.to 31 мая 2024 г. 12:36

Originally published at https://antondevtips.com. Change Tracker is the heart of EF Core, that keeps an eye on entities that are added, updated and deleted. In today's post you will learn how Change Tracker works, how entities are tracked, and how t...... читать далее

programming dotnet efcore backend

Разработка dev.to 21 мая 2024 г. 21:56

In this post, I aim to delve into various strategies for enhancing the performance of applications in C#. The areas I scrutinize for performance enhancement encompass: string manipulation, pertinent design patterns, database read operations, and ben...... читать далее

csharp designpatterns performance aspdotnet

Разработка dev.to 11 мая 2024 г. 15:45

Data mapping in Entity Framework Core (EF CORE) provides a rich set of tools to define how your domain classes are mapped to the database schema. In this blog post, we'll explore the different options available for configuring data mappings in EF COR...... читать далее

programming efcore dotnet backend

Разработка dev.to 11 мая 2024 г. 9:10

Assumptions are the mother of all f**k ups. This is a beautiful and unbelievably true statement. Photo by Bao Menglong on Unsplash We as software developers are creating, or if you prefer developing, software. And that software is just a set of i...... читать далее

softwareengineering csharp efcore softwaredevelopment

Разработка dev.to 17 апреля 2024 г. 12:53

In this article, we will take one example to walk through the steps to set up a .NET Core WEB API with CORS(Cross-Origin Resource Sharing) enabled , and database with Entity Framework hosted in Microsoft SQL Server. CORS allows a web server to handl...... читать далее

netcore webdev restapi efcore

Разработка dev.to 26 января 2024 г. 22:14

Optimizing EF Core for better performance is crucial for developing responsive applications. Here are five key strategies, as highlighted by Milan Jovanović, to enhance your EF Core queries, complete with straightforward code examples. 1. N...... читать далее

dotnet csharp efcore tutorial

Разработка dev.to 9 августа 2023 г. 18:15

The Buenos Aires Real Estate API Service is a a cutting-edge .NET 7 / EFCore supported API that offers easy access to apartment complex and apartment unit information. tigerbluejay / Buenos-Aires-Real-...... читать далее

dotnet api csharp tutorial

Разработка habr.com 15 ноября 2022 г. 9:12

В EF Core много полезных фич по работе с базами данных, но что, если этих возможностей не хватает? Я был удивлен, когда узнал, что фреймворк из коробки не умеет создавать вьюшки и отслеживать изменения их исходного кода. А что, если нам нужны не толь...... читать далее

Блог компании CUSTIS .NET ef core csharp extensions nuget efcore entityframework entity framework core

Разработка habr.com 10 октября 2022 г. 9:03

Около трех лет назад наше сообщество DotNet.Ru приняло участие в интересном эксперименте. Взаимодействуя с издательством ДМК-пресс, члены сообщества работали над переводом на русский язык замечательной книги Конрада Кокосы «Управление памятью в .NET...... читать далее

Блог компании JUG Ru Group .NET C# dotnetru book efcore

Разработка habr.com 6 июля 2022 г. 4:25

Entity Framework Core является рекомендованным и самым популярным средством взаимодействия с реляционными базами данных на платформе ASP NET Core. Это мощный инструмент который подходит для большинства сценариев, но, как и любой другой инструмент име...... читать далее

.NET Высокая производительность ASP efcore perf dapper asp net core nbomber benchmarking netcore

Разработка DZone Web Dev 14 октября 2021 г. 14:46

Unit testing is a long-established and essential part of the software development process particularly when using .NET.  The basic premise, if you are not aware, is to test the public methods of classes so that they work as expected.   Unit...... читать далее

.net web dev c# unit testing tdd .net core xunit

Разработка dev.to 9 сентября 2021 г. 12:44

Unit testing is a long-established and essential part of the software development process particularly when using .NET.  The basic premise, if you are not aware, is to test the public methods of classes so that they work as expected.  Unit tests fol...... читать далее

webdev csharp dotnet testing

Разработка Scott Hanselman's blog 2 сентября 2021 г. 19:27

I really like minimal Web APIs. I've liked the idea for years. With .NET 6, it's starting to happen! Damian Edwards has an interesting minimal API Playground on his GitHub and Maria Naggaga did a great talk on Minimal APIs in .NET 6 that's up on YouT...... читать далее

DotNetCore Open Source Web Services

Разработка dev.to 2 сентября 2021 г. 12:03

Writing LINQ that produces optimal SQL can be even harder as developers often don’t have visibility into the process. It becomes even more confusing when the application is designed to run against different databases. We often find ourselves questio...... читать далее

csharp efcore database

Разработка dev.to 18 мая 2021 г. 14:29

After much research and thought, I'm diving in today with a very basic C# unit test, just to get my feet wet with Test Driven Development. The purpose of this test, is to see if the home index will return 2 blogs. It should be very simple, and I ho...... читать далее

testing csharp dotnet webdev

Разработка dev.to 11 мая 2021 г. 15:13

Most of the time you don't need to have multiple database providers, for example, you start with the SQL Server provider and there is no need to switch to another database provider. In my recent project, we have to add multiple providers to support d...... читать далее

entityframework efcore dotnet aspnetcore