Guest User

Untitled

a guest
Mar 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. using Microsoft.EntityFrameworkCore;
  2.  
  3. namespace TestProject
  4. {
  5. public class PersonContext : DbContext
  6. {
  7. DbSet<Person> Persons { get; set; }
  8.  
  9. protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
  10. {
  11. optionsBuilder.UseSqlServer("Server=localhost,1401; Database=PersonDb1;User=SA; Password=1StrongPassword!");
  12. }
  13. }
  14. }
Add Comment
Please, Sign In to add comment