15 lines
395 B
C#
15 lines
395 B
C#
using System.Data.Entity;
|
|
|
|
namespace CRM.Core.Model.EntityUserCenter
|
|
{
|
|
public class UserCenterContext : DbContext
|
|
{
|
|
public UserCenterContext() : base(ConStringHelper.GetDbConnection(ConStringHelper.UserCenterConn), true)
|
|
{
|
|
Database.SetInitializer<UserCenterContext>(null);
|
|
}
|
|
|
|
public virtual DbSet<LableName> LableName { get; set; }
|
|
}
|
|
}
|