mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
19 lines
405 B
C#
19 lines
405 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace ContosoHR.Models
|
|
{
|
|
public partial class ContosoHRContext : DbContext
|
|
{
|
|
public ContosoHRContext(DbContextOptions<ContosoHRContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
public virtual DbSet<Employee> Employees { get; set; }
|
|
}
|
|
}
|