Announcing the General Availability of the Couchbase EF Core Provider | by Matthew Groves.
buff.ly/pwBm2w9
#efcore #dotnet #couchbase #nosql #entityframework #csharp
buff.ly/pwBm2w9
Announcing the General Availability of the Couchbase EF Core Provider | by Matthew Groves.
buff.ly/pwBm2w9
#efcore #dotnet #couchbase #nosql #entityframework #csharp
buff.ly/pwBm2w9
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/
Does the #PostgreSQL team get enough props for their #EntityFramework provider documentation? No matter how much they receiver, the answer is: no.
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…
Are you tired of generic exceptions in #EntityFramework? Let’s fix this!
OSS Power-Ups: EntityFramework.Exceptions
Speaker: Giorgi Dalakishvili
Thursday, Apr 3, 3pm UTC
Open to all, welcome!
More info: https://blog.jetbrains.com/dotnet/2025/03/07/webinar-oss-power-ups-entityframework-exceptions/?utm_medium=social&utm_source=mastodon&utm_campaign=webinar-oss-power-ups-entityframework-exceptions
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=...`
Step by step, it became harder to install an older program that I created years ago on current Windows systems.
Now, I decided to redo major parts of it, e.g., upgrade from .net framework from 4.6 to something more current, upgrade from entity framework 4 to something more current, ...
There are lots of changes to something that was running for years without problems, but the environment changed.
#programming #dotnet #entityframework
via @dotnet : .NET and .NET Framework March 2025 servicing releases updates
https://ift.tt/rLuXd7N
#DotNet #DotNetFramework #March2025 #ServicingUpdates #SecurityImprovements #CVE #ReleaseNotes #ASPNetCore #EntityFramework #SoftwareUpdates #TechNews #DeveloperCo…
A new open-source project - EntityLengths.Analyzer!
It's a Roslyn analyzer for .NET projects that helps prevent string length issues in your code at compile time.
#dotnet #csharp #opensource #entityframework #programming #coding #development #roslyn
I wrote my first blog post
Domain event dispatching using the outbox pattern with Entity Framework
https://sajilicious.micro.blog/2025/02/15/domain-event-dispatching-using-the.html
New Coding Short: "Late to the Party: PostgreSQL in .NET Core". In this Coding Short, I show how to use PostgreSQL in your .NET Projects #entityframework
This library is a C# source generator designed to automatically generate string length constants from Entity Framework configurations and data annotations.
Needed to do some database stuff in #DotNet today and thought I’d do it in #EntityFramework as I’ve not used it in years.
Lost interest after about 20 minutes and went back to just writing SQL. So much easier
I can understand why people would hate #entityframework after a few years working on an older #dotnetframework version. Updating the edmx and regenerating code is painful. It doesn't help that the tooling isn't great either. I spent 3 hours trying to get VS 2022 to correctly generate code and edmx changes from a database change. This should have taken minutes.
The newer #dotnet versions of EF Core are so much better.
In the EF Core, query "b => b.Posts.Any()" translates into SQL with more efficient EXISTS.
However, the query "b => b.Posts.Count > 0" translates into SQL with COUNT.
EF Core 9 fixes the second case and also uses the EXISTS statement.
---
Don't forget to join over 2,400 engineers reading the .NET Pulse newsletter.
Subscribe: https://go.okyrylchuk.dev/z7gddz
https://digitaldrummerj.me/ef-core-enum-as-column-value/ - save #dotNET / C# enums as strings in the #database through #EntityFramework. I've used similar techniques to save them as ints. Nice solution https://www.linkedin.com/in/digitaldrummerj/.
One table with a million columns is good, right?