Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

41 righe
1.3 KiB

  1. // <auto-generated />
  2. using Microsoft.EntityFrameworkCore;
  3. using Microsoft.EntityFrameworkCore.Infrastructure;
  4. using Microsoft.EntityFrameworkCore.Metadata;
  5. using Microsoft.EntityFrameworkCore.Migrations;
  6. using Microsoft.EntityFrameworkCore.Storage;
  7. using Microsoft.EntityFrameworkCore.Storage.Internal;
  8. using Sample.RabbitMQ.SqlServer;
  9. using System;
  10. namespace Sample.RabbitMQ.SqlServer.Migrations
  11. {
  12. [DbContext(typeof(AppDbContext))]
  13. [Migration("20170824130007_AddPersons")]
  14. partial class AddPersons
  15. {
  16. protected override void BuildTargetModel(ModelBuilder modelBuilder)
  17. {
  18. #pragma warning disable 612, 618
  19. modelBuilder
  20. .HasAnnotation("ProductVersion", "2.0.0-rtm-26452")
  21. .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
  22. modelBuilder.Entity("Sample.RabbitMQ.SqlServer.Controllers.Person", b =>
  23. {
  24. b.Property<int>("Id")
  25. .ValueGeneratedOnAdd();
  26. b.Property<int>("Age");
  27. b.Property<string>("Name");
  28. b.HasKey("Id");
  29. b.ToTable("Persons");
  30. });
  31. #pragma warning restore 612, 618
  32. }
  33. }
  34. }