Using `using`, am I understanding this right?

How does
using
differ between these two use-cases (haha, puns).
c#
using System;
using System.LINQ;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Design;
using Microsoft.EntityFrameworkCore.Sqlite;


and

c#
using (var context = new Database_Load())`?
Was this page helpful?