Just Simply Code

Another developer blog

  • Home
  • About
  • Register
  • Policy

EF Core

Respect leading and trailing spaces when querying SQL Server

2 July 2023 / Leave a Comment

In my current project, I have to implement a search functionality where users can provide a search term and the search term is to be matched exactly. This also means that any leading and trailing in the search term must be respected. Let’s say we have these Posts in the database And we initialise the … [Read more…]

Posted in: Uncategorised Tagged: .Net Core, EF Core, SQL

Database migration not running after upgrading to EF Core 6.0

13 November 2022 / Leave a Comment

We had upgraded to EF Core 6.0 for a while now but we haven’t had any schema change with migrations since before the upgrade. One of the recent changes had a migration and we noticed that the migration was never run. We tested other projects that also had upgraded to EF Core 6.0 and they … [Read more…]

Posted in: Uncategorised Tagged: .Net Core, EF Core

Integration tests with dockerized SQL Server

23 October 2022 / Leave a Comment

Recently, a friend of mine asked me if there’s a better way to run integration tests without using in-memory DB because in-memory DB does not behave exactly like the real thing. In my opinion, the repository should be simple and not contain any business logic. Hence mocking the data in the in-memory DB for the … [Read more…]

Posted in: Uncategorised Tagged: .Net Core, Docker, EF Core, Integration Test, SQL, Unit Test

Storing complex object property as JSON in SQL using Entity Framework

8 May 2022 / Leave a Comment

I have a class with a complex object property that has a lot of properties and a lot of nested complex properties in it. Other properties in this class will be stored in SQL the normal way, relational and one column per property. Given the complexity of this particular property, I want to store it … [Read more…]

Posted in: Uncategorised Tagged: .Net Core, EF Core, Json, SQL

Cartesian Explosion problem in Entity Framework

7 November 2021 / Leave a Comment

In relational databases like SQL, you can load related entities using Joins. In case of one-to-many relationships, this would lead to duplicated data returned. For example, entity Book has one-to-many Comments. If a book has 3 comments, the query below will return 3 rows, one for each comment with duplicate data for the book. Now … [Read more…]

Posted in: Uncategorised Tagged: EF Core, Net Core, Split Queries, SQL

Executing raw SQL query with Entity Framework without using DbSet

24 October 2021 / Leave a Comment

In this previous post, I showed how to execute raw SQL query using EF but it requires the entity to be defined and to be accessible via DbSet. However, there might be times where you just want to execute a raw SQL query to return some arbitrary shape that is not necessarily part of your … [Read more…]

Posted in: Uncategorised Tagged: .Net Core, EF Core, SQL

Entity Framework EnsureCreated method

10 October 2021 / Leave a Comment

I came across a problem with EnsureCreated() method that broke all the SQL migrations on start up. I have some queries that I wanted to run before the migrations. I thought I should make sure the database exists before I run them. I saw the method DatabaseFacade. EnsureCreated() and decided to use it. This method … [Read more…]

Posted in: Uncategorised Tagged: .Net Core, EF Core, SQL

Resetting SQL Sequence for multiple test environments

26 September 2021 / Leave a Comment

In the last post, I showed how we use SQL Sequence to achieve sequential number ID in a specific range. As mentioned in the last post, we and each party that we integrate with have a defined range of number to be used as ID and this ID must be unique globally among all the … [Read more…]

Posted in: Uncategorised Tagged: .Net Core, EF Core, Extension Method, SQL, SQL Sequence

Using SQL Sequence

12 September 2021 / Leave a Comment

Recently we have a requirement for one project where the ID for any entities in this project must be within a range of number. In this project, we have to integrate with a number of other external parties. The ID for any entity used in this integration must be unique globally across all the connected … [Read more…]

Posted in: Uncategorised Tagged: EF Core, SQL, SQL Sequence

Revisit – EF Core error when updating nested list of an object

18 July 2021 / Leave a Comment

In this previous post, I talked about how EF uses Update statements instead of Insert when adding new items with the item key populated to a list property of an object and then SaveChanges. In that post, the solution to get it working was to not populate the key property when adding the item to the list. EF … [Read more…]

Posted in: Uncategorised Tagged: EF Core
1 2 Next »

Search Posts

Recent Posts

  • Override IHttpRequestBodyDetectionFeature.CanHaveBodyOverride value in .NET Core Web API
  • Allow empty request body in PUT and POST HTTP requests in .NET Core Web API
  • Modify request body with middleware in .NET Core Web API
  • Running MS Orleans on AWS ECS
  • Respect leading and trailing spaces when querying SQL Server
Support my blog here!Support my blog!

Archives

  • July 2024
  • June 2024
  • July 2023
  • April 2023
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • July 2019
  • June 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • June 2018
  • May 2018
  • October 2017
  • September 2017
  • July 2017
  • June 2017
  • May 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017
  • December 2016
  • November 2016
  • October 2016
  • September 2016
  • July 2016
  • June 2016
  • March 2016
  • February 2016
  • January 2016

Copyright © 2025 Just Simply Code.

Me WordPress Theme by themehall.com