2024-12-27 07:56:37 +00:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Demka_2.Use;
|
|
|
|
|
public class AppDbContext : DbContext
|
|
|
|
|
{
|
|
|
|
|
public DbSet<Service> Services { get; set; }
|
|
|
|
|
|
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder oB)
|
|
|
|
|
{
|
2024-12-27 12:48:34 +00:00
|
|
|
|
oB.UseSqlServer("Server=45.67.56.214,5421;Database=user16;User Id=user16;Password=dZ28IVE5;");
|
2024-12-27 07:56:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|