SapientGuardian.EntityFrameworkCore.MySql icon indicating copy to clipboard operation
SapientGuardian.EntityFrameworkCore.MySql copied to clipboard

MySQL database provider for Entity Framework Core

Results 17 SapientGuardian.EntityFrameworkCore.MySql issues
Sort by recently updated
recently updated
newest added

I had a property which was a "string" and this of course created a varchar(255) in MySQL. After realizing that I needed more space, I added the following fluent: modelBuilder.Entity()...

Should migrations work properly on EF 1.1 ? I use: ``` "SapientGuardian.EntityFrameworkCore.MySql" : "7.1.15" "Microsoft.EntityFrameworkCore": "1.1.0", ``` after invoking update db command: ``` dotnet ef database update --context DbContextClassName ```...

Hi I'm working with a 3rd party framework which maps some fields without a `HasMaxLength` constraint. The provider looks like it defaults to varchar(255) columns for these fields. This seems...

Any news when , if EF Core 2.0 is/will be supported? Greetings Damien

The code generated by a migration can result in names that are too long for mySql table.ForeignKey( - name: "FK_FooBarEntity_FooImpactsEntity_FooImpactsId",

I would like to create my DbContext from an existing MySQL database. MS describes this for SQL Server [here](https://docs.efproject.net/en/latest/platforms/aspnetcore/existing-db.html#id5). I tried some provider names like MySQL.Data.Entity.MySQLDatabaseProvider, MySQL.Data.Entity, SapientGuardian.EntityFrameworkCore. ..., but...

Heya! I'm planning on using your Framework in a ASP Net Core 2.0 preview project. Sadly on running the project i'm encountering this error: > System.TypeLoadException: "Method 'Clone' in type...

Hi there, I'm currently facing an issue that I cannot map object to table name. For example. I have an object: ``` [Table("tram")] public class Station { /// /// Id...

Hi, I am using spaientGuardian with ASP Net Core 1.1 in a code first model, when i try to rename a column using migrations and update the database the column...

Hello! Running this migration: ``` protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_clients_region_RegionID", table: "clients"); migrationBuilder.DropForeignKey( name: "FK_locations_region_RegionID", table: "locations"); migrationBuilder.DropPrimaryKey( name: "PK_region", table: "region"); migrationBuilder.RenameTable( name: "region", newName:...