Add project files.
This commit is contained in:
22
DatamodelLibrary/StockContext.cs
Normal file
22
DatamodelLibrary/StockContext.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using DataDomain;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DatamodelLibrary
|
||||
{
|
||||
public class StockContext : DbContext
|
||||
{
|
||||
public DbSet<StockMember> Stocks { get; set; }
|
||||
public DbSet<Person> Persons { get; set; }
|
||||
public DbSet<Address> Addresses { get; set; }
|
||||
public DbSet<PersonStock> PersonStocks { get; set; }
|
||||
public DbSet<BackupRegister> BackupRegings { get; set; }
|
||||
|
||||
protected override void OnConfiguring(DbContextOptionsBuilder options)
|
||||
=> options.UseSqlite("Data Source=Stocks.db");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user