Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ExecuteSql* methods should allow nullable object? parameters #35813

Open
jekingry opened this issue Mar 19, 2025 · 0 comments
Open

ExecuteSql* methods should allow nullable object? parameters #35813

jekingry opened this issue Mar 19, 2025 · 0 comments

Comments

@jekingry
Copy link

jekingry commented Mar 19, 2025

Bug description

Example:

int? value = null;

// this will not compile
dbContext.Database.ExecuteSqlRaw("UPDATE SomeTable SET Value = {0}", value);

// This will throw The current provider doesn't have a store type mapping for properties of type 'DBNull'. 
dbContext.Database.ExecuteSqlRaw("UPDATE SomeTable SET Value = {0}", (object?)value ?? DBNull.Value);

// This is the only option to get the intended behavior
dbContext.Database.ExecuteSqlRaw("UPDATE SomeTable SET Value = {0}", value!);

So there is handling for converting null values to DBNull.Value, so shouldn't parameters allow null values?

Your code

int? value = null;

// this will not compile
dbContext.Database.ExecuteSqlRaw("UPDATE SomeTable SET Value = {0}", value);

// This will throw The current provider doesn't have a store type mapping for properties of type 'DBNull'. 
dbContext.Database.ExecuteSqlRaw("UPDATE SomeTable SET Value = {0}", (object?)value ?? DBNull.Value);

// This is the only option to get the intended behavior
dbContext.Database.ExecuteSqlRaw("UPDATE SomeTable SET Value = {0}", value!);

Stack traces

Error Message: System.InvalidOperationException : The current provider doesn't have a store type mapping for properties of type 'DBN
      ull'.
      Stack Trace:
         at Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingSourceExtensions.GetMapping(IRelationalTypeMappingSource typeMappingSource, Type clrType, IModel model)
         at Microsoft.EntityFrameworkCore.Storage.Internal.RawSqlCommandBuilder.Build(String sql, IEnumerable`1 parameters, IModel model)
         at Microsoft.EntityFrameworkCore.RelationalDatabaseFacadeExtensions.ExecuteSqlRawAsync(DatabaseFacade databaseFacade, String sql, IEnumerable`1 parameters, CancellationToken cancellationToken)   
         at IntegrationTests.ExampleTest.TestQuery() in C:\IntegrationTests\ExampleTest.cs:line 30

Verbose output


EF Core version

9.0.1

Database provider

MSSQL

Target framework

9.0.201

Operating system

Windows 11

IDE

VS Code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants