简体   繁体   中英

Guid property on Mysql Entity Framework

I'm using Entity Framework with MySql extension on ASP.NET Core application. One of my domain model Message have Guid property and when I want to execute any operation on my DbContext I'm receiving an error: The property 'Message.ID' is of type 'Guid' which is not supported by current database provider. Either change the property CLR type or manually configure the database type for it. The property 'Message.ID' is of type 'Guid' which is not supported by current database provider. Either change the property CLR type or manually configure the database type for it. .

How do I "manually configure the database type'? I've read that it should be mapped for CHAR(36), but I couldn't find how to do that on application side.

@UPDATE

When I set the attribute [Column(TypeName = "char(32)")] to the Guid property, error remains.

This method also does not work

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
  var messageEntity = modelBuilder.Entity< Message>();
  messageEntity.Property(x => x.ID).
   HasAnnotation("Column", new { TypeName = "char(32)" });
}

I had this issue and I resolved that way:

  1. I removed the MySql.Data.EntityFrameworkCore from my project

  2. I installed Pomelo.EntityFrameworkCore.MySql by Nuget and this data provider mapped correctly the Guid .

  3. I changed my method name UseMySQL to UseMySql and added using Microsoft.EntityFrameworkCore; at Startup.cs :

services.AddDbContext(options =>
options.UseMySql(Configuration.GetConnectionString("MyContext")));

Remember to make sure the Guid is data type char(36) in the database.

I have successfully used the Guid type with MySql EF in regular ASP.NET (not Core) with the Database First approach.

To accomplish this, I've defined the column type in MySql as BINARY(16) . It's been quite a while since I've developed that model, but I think I remember that MySql EF provider automatically maps BINARY(16) to System.Guid in the EF models.

You will have to use the oldguids=true connection string property so that MySql uses the BINARY(16) type for guids instead of the default CHAR(36) .

I also think that making the column CHAR(36) and skipping the oldguids=true part in the connection string would also result in the same thing.

On top of Mihai's answer, I have followed the same approach, but just want to ask, do we expect the same Guid value if we use hex function to convert binary 16 to UUID?

Because right now I'm getting different values, comparing Guid generated in C# with the UUID converted from MySQL Binary 16 column.

Not sure if others are having same issue?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM