mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 17:23:01 -05:00
35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated from a template.
|
|
//
|
|
// Manual changes to this file may cause unexpected behavior in your application.
|
|
// Manual changes to this file will be overwritten if the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace FeedCenter
|
|
{
|
|
using System;
|
|
using System.Data.Entity;
|
|
using System.Data.Entity.Infrastructure;
|
|
|
|
public partial class FeedCenterEntities : DbContext
|
|
{
|
|
public FeedCenterEntities()
|
|
: base("name=FeedCenterEntities")
|
|
{
|
|
}
|
|
|
|
protected override void OnModelCreating(DbModelBuilder modelBuilder)
|
|
{
|
|
throw new UnintentionalCodeFirstException();
|
|
}
|
|
|
|
public virtual DbSet<Category> Categories { get; set; }
|
|
public virtual DbSet<Feed> Feeds { get; set; }
|
|
public virtual DbSet<FeedAction> FeedActions { get; set; }
|
|
public virtual DbSet<FeedItem> FeedItems { get; set; }
|
|
public virtual DbSet<Setting> Settings { get; set; }
|
|
}
|
|
}
|