Advertisement
Guest User

PokemonContext

a guest
Mar 19th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data.Entity;
  4. using System.Linq;
  5. using System.Web;
  6.  
  7. namespace WebApplication1.Models
  8. {
  9. public class PokemonContext : DbContext
  10. {
  11. public DbSet<Pokemon> Pokemon { get; set; }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement