|
1234567891011121314151617181920212223242526272829303132333435363738 |
- using Microsoft.EntityFrameworkCore;
-
- namespace Sample.RabbitMQ.MySql
- {
- public class Person
- {
- public int Id { get; set; }
-
- public string Name { get; set; }
-
- public override string ToString()
- {
- return $"Name:{Name}, Id:{Id}";
- }
- }
- public class Person2
- {
- public int Id { get; set; }
-
- public string Name { get; set; }
-
- public override string ToString()
- {
- return $"Name:{Name}, Id:{Id}";
- }
- }
- public class AppDbContext : DbContext
- {
- public const string ConnectionString = "Server=192.168.2.120;Database=captest;UserId=root;Password=123123;";
-
- public DbSet<Person> Persons { get; set; }
-
- protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
- {
- optionsBuilder.UseMySql(ConnectionString);
- }
- }
- }
|