Advertisement
Guest User

Untitled

a guest
Feb 18th, 2015
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 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.  
  7. namespace Storage_test.Models
  8. {
  9. public class StorageRecordContext : DbContext
  10. {
  11. public StorageRecordContext() : base("Storage_test") { }
  12. public DbSet<StorageRecord> TheRecords { get; set; }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement