Входная строка была не в правильном формате EF6 - PullRequest
0 голосов
/ 06 ноября 2018

В настоящее время я использую EF6 и пытаюсь реализовать отношение один-ко-многим, используя code-first:

public class Schedule
{
    public int ScheduleId { get; set; }
}

public class Instruction
{
    public int Id { get; set; }
    public Schedule Schedule { get; set; }
}

Я придерживаюсь соглашения 1 здесь .

В моем методе я сначала пытаюсь добавить пустой график:

public class ScheduleRepo  {
    public void SetSchedule()
    {
        Schedule schedule = new Schedule();
        using (UptrenderDbContext ctx = new UptrenderDbContext())
        {
            ctx.Schedules.Add(schedule);
            ctx.SaveChanges();
        }
    }
}´

Метод вызывается из теста:

[TestFixture]
public class ScheduleRepoTest {

    private readonly ScheduleRepo repo = new ScheduleRepo();

    [Test]
    public void TestSetSchedule()
    {
        repo.SetSchedule();     
    }
}

Мой контекст выглядит так:

    [DbConfigurationType(typeof(MySqlEFConfiguration))]
    public class UptrenderDbContext : DbContext
    {
        public DbSet<Schedule> Schedules { get; set; }
        public DbSet<Instruction> Instructions { get; set; } //Not used yet

        public UptrenderDbContext () {
            Database.SetInitializer(new DropCreateDatabaseAlways<UptrenderDbContext >());
        }
    }

При запуске программы я получаю трассировку стека:

Трассировка стека:

    System.FormatException : Input string was not in a correct format.
   at System.Number.ParseDouble(String value, NumberStyles options, NumberFormatInfo numfmt)
   at System.Convert.ToDouble(String value)
   at MySql.Data.Entity.MySqlMigrationSqlGenerator.Generate(CreateIndexOperation op)
   at MySql.Data.Entity.MySqlMigrationSqlGenerator.Generate(IEnumerable`1 migrationOperations, String providerManifestToken)
   at System.Data.Entity.Migrations.DbMigrator.ExecuteOperations(String migrationId, VersionedModel targetModel, IEnumerable`1 operations, IEnumerable`1 systemOperations, Boolean downgrading, Boolean auto)
   at System.Data.Entity.Migrations.DbMigrator.AutoMigrate(String migrationId, VersionedModel sourceModel, VersionedModel targetModel, Boolean downgrading)
   at System.Data.Entity.Migrations.DbMigrator.Upgrade(IEnumerable`1 pendingMigrations, String targetMigrationId, String lastMigrationId)
   at System.Data.Entity.Migrations.DbMigrator.UpdateInternal(String targetMigration)
   at System.Data.Entity.Migrations.DbMigrator.EnsureDatabaseExists(Action mustSucceedToKeepDatabase)
   at System.Data.Entity.Migrations.DbMigrator.Update(String targetMigration)
   at System.Data.Entity.Internal.DatabaseCreator.CreateDatabase(InternalContext internalContext, Func`3 createMigrator, ObjectContext objectContext)
   at System.Data.Entity.Database.Create(DatabaseExistenceState existenceState)
   at System.Data.Entity.DropCreateDatabaseAlways`1.InitializeDatabase(TContext context)
   at System.Data.Entity.Internal.InternalContext.PerformInitializationAction(Action action)
   at System.Data.Entity.Internal.InternalContext.PerformDatabaseInitialization()
   at System.Data.Entity.Internal.RetryAction`1.PerformAction(TInput input)
   at System.Data.Entity.Internal.LazyInternalContext.InitializeDatabaseAction(Action`1 action)
   at System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType)
   at System.Data.Entity.Internal.Linq.InternalSet`1.Initialize()
   at System.Data.Entity.Internal.Linq.InternalSet`1.get_InternalContext()
   at System.Data.Entity.Internal.Linq.InternalSet`1.ActOnSet(Action action, EntityState newState, Object entity, String methodName)
   at System.Data.Entity.Internal.Linq.InternalSet`1.Add(Object entity)
   at System.Data.Entity.DbSet`1.Add(TEntity entity)
   at Data.Repos.Impl.ScheduleRepo.SetSchedule() in C:\Users\Benjamin\Desktop\uptrender\Data\Repos\Impl\ScheduleRepo.cs:line 20
   at Data.Tests.ScheduleRepoTest.TestSetSchedule() in C:\Users\Benjamin\Desktop\uptrender\Data\Tests\ScheduleRepoTest.cs:line 21

Я замечаю, что если я удаляю public Schedule Schedule{ get; set; } из Instruction, исключение не выдается, и schedule успешно добавляется в БД.

Возможно, я пропустил что-то очень тривиальное, потому что я новичок в EF6.

...