コード例 #1
0
ファイル: HomeController.cs プロジェクト: AndrewFang2/EFCore
 public HomeController(DrivingDbContext context)
 {
     _context = context;
 }
コード例 #2
0
ファイル: DriversController.cs プロジェクト: aarad-ac/EFCore
 public DriversController(DrivingDbContext context)
 {
     _context = context;
 }
コード例 #3
0
 public DrivingRepository(DrivingDbContext ctx)
 {
     _context = ctx;
 }