8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【ASP.NET】DbContextが見つからない【Visual Studio 2017】

Last updated at Posted at 2017-04-03

開発環境をVisual Studio 2010 から Visual Studio 2017 に変えた。
(時代の流れを一気に感じる)

そしてASP.NETに手をつける。
今回はこちらでお勉強させてもらった。
ASP.NET MVC 🍣 ClockUpTips

##DbContextが見つからない
データベースコンテキストの作成をする手順の中で書かれていた通り、
using System.Data.Entity;を追加する。そしてDbContextを追加してもエラーに・・・

そもそもEntityFreameWorkが入っていないようだ。爆笑。

##EntityFrameWork4.2をインストール

早速、ツール>NuGet パッケージマネージャーから
パッケージマネージャコンソールを起動する。

そして以下のコマンドをうつ。

Install-Package EntityFramework -Version 4.2.0

これでインストールできれば解決。

8
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?