16 lines
370 B
C#
16 lines
370 B
C#
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
|
|
namespace CC.Yi.Model
|
|
{
|
|
public partial class DataContext : IdentityDbContext
|
|
{
|
|
public DataContext(DbContextOptions<DataContext> options) : base(options)
|
|
{
|
|
|
|
}
|
|
public DbSet<result_user> result_user { get; set; }
|
|
}
|
|
}
|