#entityframework — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #entityframework, aggregated by home.social.
-
From the .NET blog...
In case you missed it earlier...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the .NET blog...
In case you missed it earlier...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the .NET blog...
In case you missed it earlier...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the .NET blog...
In case you missed it earlier...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the .NET blog...
In case you missed it earlier...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the .NET blog...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the .NET blog...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the .NET blog...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the .NET blog...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the .NET blog...
.NET 11 Preview 4 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-4/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the archives...
Past Is Not Prologue - #ScifiDevCon2025
https://barretblake.dev/posts/development/2025/05/past-is-not-prologue-scifidevcon2025/ #youtube #EntityFramework #SciFiDevCon -
From the archives...
Past Is Not Prologue - #ScifiDevCon2025
https://barretblake.dev/posts/development/2025/05/past-is-not-prologue-scifidevcon2025/ #youtube #EntityFramework #SciFiDevCon -
From the archives...
Past Is Not Prologue - #ScifiDevCon2025
https://barretblake.dev/posts/development/2025/05/past-is-not-prologue-scifidevcon2025/ #youtube #EntityFramework #SciFiDevCon -
From the archives...
Past Is Not Prologue - #ScifiDevCon2025
https://barretblake.dev/posts/development/2025/05/past-is-not-prologue-scifidevcon2025/ #youtube #EntityFramework #SciFiDevCon -
From the archives...
Past Is Not Prologue - #ScifiDevCon2025
https://barretblake.dev/posts/development/2025/05/past-is-not-prologue-scifidevcon2025/ #youtube #EntityFramework #SciFiDevCon -
From the .NET blog...
In case you missed it earlier...
.NET 11 Preview 3 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-3/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
From the .NET blog...
.NET 11 Preview 3 is now available!
https://devblogs.microsoft.com/dotnet/dotnet-11-preview-3/ #dotnet #NETMAUI #ASPNETCore #csharp #EntityFramework #NET11 #Featured -
New post from my blog...
In case you missed it earlier...
EF Core Migrations Best Practices
https://barretblake.dev/posts/development/2026/04/ef-migrations-best-practices/ #entityframework -
New post from my blog...
EF Core Migrations Best Practices
https://barretblake.dev/posts/development/2026/04/ef-migrations-best-practices/ #entityframework -
#databases #sqlserver #technicalDebt #entityFramework
So... At work, our product has many data grids, and uses Entity Framework, most of the grids are paged.
Paging is done viaawait orderedQuery. Skip((page-1)*pageSize). Take(pageSize).TolistAsync()
Page 2 loads had always been slow. EF "optimises" the generated query to use one parameter for the second page because page 2 is... .Skip((1-1)*pageSize).Take(pageSize) ...
Both resolve to the same value. EF says "same value, same parameter!" Find whatever.
Except... SQL server builds and uses a different (and more costly) plan for the resultingOFFSET \@p ROWS LIMIT \@pthat is consistently worse than it they had didn't values that producesOFFSET \@p1 ROWS LIMIT \@p2Apparently it's been a known problem for a long time.
Until someone as dumb as me asks... Why not Skip as much as normal and Take one extra then don't use it the extra.
(await orderedQuery. Skip((page-1)*pageSize). Take(pageSize+1).TolistAsync()).Take(pageSize)/1
-
From the archives...
KCDC 2024 Slidedeck
https://barretblake.dev/posts/conferences/2024/kcdc-2024-slidedeck/ #efcore #entityframework #slides -
https://antondevtips.com/blog/how-to-increase-ef-core-performance-for-read-queries-in-dotnet?utm_source=linkedin&utm_medium=social&utm_campaign=13-01-2026 - Speed up #EntityFramework Core in #dotNET. Nice post Anton Martyniuk.
-
Blogged: Entity Framework Core 10 provider for Firebird is ready
-
Blogged: Entity Framework Core 10 provider for Firebird is ready
-
Blogged: Entity Framework Core 10 provider for Firebird is ready
-
Blogged: Entity Framework Core 10 provider for Firebird is ready
-
Blogged: Entity Framework Core 10 provider for Firebird is ready
-
Coming up next month (February 9-11th), I'm holding my "ASP․NETCore 10 and Vue.js From Scratch" course in The Hague, NL. Limited seating for this three day class on #aspnetcore, #entityframework, and #vuejs. Check it out here:
-
Зачем вообще использовать ORM?
Разработка софта всегда была поиском баланса между разными аспектами, вроде скорости разработки (как быстро ты выкатываешь новые фичи), производительности приложения, потребления им памяти, красотой интерфейса и отполированностью логики. В большинстве случаев скорость разработки важнее, чем производительность и потребление памяти. ORM - это как раз инструмент, экономящий время разработки. Но за счёт чего?
-
https://www.sea-ql.org/SeaORM/docs/generate-entity/entity-first/
>This is where SeaORM shines: it automatically builds a dependency graph from your entities and determines the correct topological order to create the tables, so you don't have to keep track of them in your head.
Awesome. It sounds like #SeaORM might be Rust's equivalent of #EntityFramework from the #dotnet world. I'm fiddling with a local application that stores data in a #sqlite database, and have been looking at various crates that could handle schema and entity management. While SeaORM bills itself as being meant for web applications, I'm not seeing anything that would preclude using it in local apps.
-
https://www.sea-ql.org/SeaORM/docs/generate-entity/entity-first/
>This is where SeaORM shines: it automatically builds a dependency graph from your entities and determines the correct topological order to create the tables, so you don't have to keep track of them in your head.
Awesome. It sounds like #SeaORM might be Rust's equivalent of #EntityFramework from the #dotnet world. I'm fiddling with a local application that stores data in a #sqlite database, and have been looking at various crates that could handle schema and entity management. While SeaORM bills itself as being meant for web applications, I'm not seeing anything that would preclude using it in local apps.
-
https://www.sea-ql.org/SeaORM/docs/generate-entity/entity-first/
>This is where SeaORM shines: it automatically builds a dependency graph from your entities and determines the correct topological order to create the tables, so you don't have to keep track of them in your head.
Awesome. It sounds like #SeaORM might be Rust's equivalent of #EntityFramework from the #dotnet world. I'm fiddling with a local application that stores data in a #sqlite database, and have been looking at various crates that could handle schema and entity management. While SeaORM bills itself as being meant for web applications, I'm not seeing anything that would preclude using it in local apps.
-
https://www.sea-ql.org/SeaORM/docs/generate-entity/entity-first/
>This is where SeaORM shines: it automatically builds a dependency graph from your entities and determines the correct topological order to create the tables, so you don't have to keep track of them in your head.
Awesome. It sounds like #SeaORM might be Rust's equivalent of #EntityFramework from the #dotnet world. I'm fiddling with a local application that stores data in a #sqlite database, and have been looking at various crates that could handle schema and entity management. While SeaORM bills itself as being meant for web applications, I'm not seeing anything that would preclude using it in local apps.
-
https://www.sea-ql.org/SeaORM/docs/generate-entity/entity-first/
>This is where SeaORM shines: it automatically builds a dependency graph from your entities and determines the correct topological order to create the tables, so you don't have to keep track of them in your head.
Awesome. It sounds like #SeaORM might be Rust's equivalent of #EntityFramework from the #dotnet world. I'm fiddling with a local application that stores data in a #sqlite database, and have been looking at various crates that could handle schema and entity management. While SeaORM bills itself as being meant for web applications, I'm not seeing anything that would preclude using it in local apps.
-
EFCore.Visualizer – View Entity Framework Core query plan inside Visual Studio.
-
#AspNetCore, for an #Sqlite database.
- Vacuum on startup/shutdown,
- offline by user running vacuum command through Sqlite CLI,
- or on regular intervals during runtime? -
T-SQL в .NET Core EF Core: Гибридный подход к производительности и гибкости (Переосмысление с учетом обсуждения)
Секретное оружие в .NET Core: Почему вы игнорируете мощь T-SQL? Ваши LINQ-запросы становятся громоздкими? Производительность упирается в потолок? Возможно, вы упускаете нечто важное. Эта статья — приглашение взглянуть на привычные инструменты под новым углом. Мы исследуем гибридный подход, который позволяет использовать весь потенциал Microsoft SQL Server, выходя за рамки стандартного взаимодействия через EF Core. Узнайте, как T-SQL может упростить сложные задачи, повысить производительность и сделать вашу архитектуру более гибкой. Это не просто технический трюк, а переосмысление роли СУБД в современном приложении. Готовы узнать, как использовать "скрытые" возможности MSSQL и почему это может быть именно то, что нужно вашему проекту? Читать об этом
https://habr.com/ru/articles/914378/
#net #net_core #ef #entityframework #linq #tsql #sql #mssql #mssqlserver #database_development
-
So many SaaS applications are simply single-page applications wrapping a database. So why not learn the #dotnet SPA framework, #blazor and the popular #EntityFramework?
-
Curious about when to choose between Dapper and Entity Framework for your .NET project? 🤔
If you need high-performance, lightweight data access, go with Dapper! 💪 For more complex data models and relationships go for Entity Framework.
#Dapper #EntityFramework #dotnet -
One thing is for sure, version controlling a #SQL database is not easy.
There's a bit more ceremony involved, but it looks like #microsoft does have a recommendation. Check it out.https://www.youtube.com/watch?v=xzqpf0Nq06o
#sql #git #dotnet #entityframework -
T-SQL в .NET Core EF Core: Гибридный подход к производительности и гибкости
В мире .NET разработки, работа с базами данных – неотъемлемая часть. Entity Framework Core (EF Core) предоставляет удобный способ взаимодействия с данными, но при работе с SQL Server, особенно в сложных сценариях, LINQ запросы могут уступать в производительности и гибкости T-SQL. Статья рассматривает эту дилемму, предлагая гибридный подход. Мы погрузимся в проблему: как эффективно использовать мощь T-SQL, не отказываясь от преимуществ EF Core? Обсудим интеграцию T-SQL через Raw SQL, Views, UDF и Stored Procedures. Раскроем лучшие практики: разделение ответственности, оптимизацию запросов, безопасность и тестирование. Поймем, как сочетать удобство ORM с производительностью SQL Server, применяя Data-Driven Design и, при необходимости, Domain-Driven Design. Статья – руководство для .NET разработчиков, стремящихся к оптимальному балансу между производительностью, гибкостью и удобством разработки при работе с SQL Server и EF Core. Читать об этом
https://habr.com/ru/articles/906522/
#net #net_core #ef #entityframework #linq #tsql #sql #mssql #mssqlserver #database_development
-
Announcing the General Availability of the Couchbase EF Core Provider | by Matthew Groves.
https://www.couchbase.com/blog/ef-core-provider-for-couchbase-general-availability/
-
via @dotnet : .NET and .NET Framework April 2025 servicing releases updates
https://ift.tt/WRnZhzB
#DotNet #DotNetFramework #April2025 #SecurityUpdates #CVE #ReleaseNotes #ASPNetCore #EntityFramework #SDK #Winforms #SoftwareDevelopment #Programming #DevCommunity… -
https://learn.microsoft.com/en-us/ef/core/dbcontext-configuration/#use-a-dbcontext-factory - want to use an #EntityFramework DBContext in a singleton? In #ASPnet's DI, rig up a factory: `services.AddDbContextFactory<ApplicationDbContext>(o => o.UseSqlServer("Server=...`