| 12345678910111213141516171819 |
- using ddAlter.Models;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Threading.Tasks;
- namespace ddAlter.DB
- {
- public class xyDBContext : DbContext
- {
- public xyDBContext(DbContextOptions options) : base(options)
- {
- // Using the default constructor
- }
- public DbSet<T_Call_CallRecords> T_Call_CallRecords { get; set; }
- public DbSet<RecordCount> RecordCount { get; set; }
- }
- }
|