Advertisement
alawerda

intialqcontext

Jul 19th, 2016
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.37 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Data.Entity;
  6. using testintilaq2.Models;
  7.  
  8. namespace testintilaq2.context
  9. {
  10.     public class intilaqcontext : DbContext
  11.  
  12.     {
  13.         public intilaqcontext() : base("intilaqcontext")
  14.         {
  15.         }
  16.         public DbSet<Employee> Employee { get; set; }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement