12 lines
273 B
C#
12 lines
273 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace RhSolutions.Api.Models;
|
|||
|
|
|||
|
public class RhSolutionsContext : DbContext
|
|||
|
{
|
|||
|
public RhSolutionsContext(DbContextOptions<RhSolutionsContext> options)
|
|||
|
: base(options) { }
|
|||
|
|
|||
|
public DbSet<Product> Products => Set<Product>();
|
|||
|
}
|