123456789101112131415161718192021 |
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace WpfApp1
- {
- public class FItneesContext:DbContext
- {
- public FItneesContext()
- {
- Database.EnsureCreated();
- }
- public DbSet<Users> Users { get; set; }
- public DbSet<Role> Role { get; set; }
- protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
- {
- optionsBuilder.UseSqlServer("Data Source=mssql;Initial Catalog=gr601_schugal ;Integrated Security=True");
- }
- }
- }
|