Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- using Microsoft.EntityFrameworkCore;
-
- namespace Sample.RabbitMQ.SqlServer
- {
- public class Person
- {
- 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 = "";
-
- public DbSet<Person> Persons { get; set; }
-
- protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
- {
- optionsBuilder.UseSqlServer(ConnectionString);
- }
- }
- }
|