DB/TransportGuideDatabaseImplements/TransportGuideDB.cs

29 lines
866 B
C#
Raw Normal View History

2023-04-22 21:01:25 +04:00
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel;
2023-04-22 21:01:25 +04:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TransportGuideDatabaseImplements.Models;
2023-04-22 21:01:25 +04:00
namespace TransportGuideDatabaseImplements
{
public class TransportGuideDB : DbContext
{
2023-05-04 20:21:27 +04:00
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
if (optionsBuilder.IsConfigured == false)
{
optionsBuilder.UseNpgsql("Host=192.168.56.101;Port=5432;Database=TransportSubd;Username=postgres;Password=postgres");
}
base.OnConfiguring(optionsBuilder);
}
public virtual DbSet<Route> Routes { set; get; }
public virtual DbSet<Stop> Stops { set; get; }
public virtual DbSet<StopRoute> StopRoutes { set; get; }
public virtual DbSet<TransportType> TransportTypes { set; get; }
}
2023-04-22 21:01:25 +04:00
}