Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. SET ANSI_NULLS ON
  2. GO
  3.  
  4. SET QUOTED_IDENTIFIER ON
  5. GO
  6.  
  7. CREATE TABLE [dbo].[Area](
  8. [ID] [bigint] identity (1, 1) primary key,
  9. [Name] [nvarchar](100) NOT NULL
  10. )
  11. GO
  12.  
  13. public virtual DbSet<Area> Areas { get; set; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement