25 lines
599 B
C#
25 lines
599 B
C#
using System;
|
|
using Competition.Model;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Competition.Model
|
|
{
|
|
public partial class competition_dbContext : DbContext
|
|
{
|
|
public competition_dbContext()
|
|
{
|
|
}
|
|
|
|
public competition_dbContext(DbContextOptions<competition_dbContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
///// <summary>
|
|
///// 全局配置
|
|
///// </summary>
|
|
//public virtual DbSet<b_quanjsz> b_quanjsz { get; set; }
|
|
}
|
|
} |