The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
971 B
29 lines
971 B
using Microsoft.AspNet.Identity.EntityFramework; |
|
using System.Data.Entity; |
|
using System.Data.Entity.Infrastructure; |
|
using Teknik.Areas.Blog.Models; |
|
using Teknik.Areas.Profile.Models; |
|
using Teknik.Migrations; |
|
|
|
namespace Teknik.Models |
|
{ |
|
public class TeknikEntities : DbContext |
|
{ |
|
public DbSet<User> Users { get; set; } |
|
public DbSet<Group> Groups { get; set; } |
|
public DbSet<Role> Roles { get; set; } |
|
public DbSet<Blog> Blogs { get; set; } |
|
public DbSet<Post> Posts { get; set; } |
|
|
|
protected override void OnModelCreating(DbModelBuilder modelBuilder) |
|
{ |
|
modelBuilder.Entity<User>().ToTable("Users"); |
|
modelBuilder.Entity<Group>().ToTable("Groups"); |
|
modelBuilder.Entity<Role>().ToTable("Roles"); |
|
modelBuilder.Entity<Blog>().ToTable("Blogs"); |
|
modelBuilder.Entity<Post>().ToTable("Posts"); |
|
|
|
base.OnModelCreating(modelBuilder); |
|
} |
|
} |
|
} |