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

Exception message for type mismatches #35846

Open
ankane opened this issue Mar 26, 2025 · 1 comment
Open

Exception message for type mismatches #35846

ankane opened this issue Mar 26, 2025 · 1 comment

Comments

@ankane
Copy link

ankane commented Mar 26, 2025

What problem are you trying to solve?

Hi, when specifying a CLR type that does not match the SQL type, like:

public class Item
{
    [Column(TypeName = "int")]
    public string? Count { get; set; }
}

EF Core throws a System.InvalidOperationException with the message:

The property 'Item.Count' could not be mapped because it is of type 'string', which is not a supported primitive type or a valid entity type. Either explicitly map this property, or ignore it using the '[NotMapped]' attribute or by using 'EntityTypeBuilder.Ignore' in 'OnModelCreating'.

However, string is a supported type, so this message seems a bit confusing (this applies to all types, string is just an example).

Describe the solution you'd like

An error message that mentions a type mismatch.

@roji
Copy link
Member

roji commented Mar 26, 2025

Yeah, this seems like the generic message we throw when the provider's type mapping source fails to find a mapping (returns null). We should tweak the wording here.

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

2 participants