我已经开始学习MVC和ASP.NET Core了。我一直在关注一个在线视频教程以习惯MVC,并且在使用Entity Framework在localDb中创建数据库时遇到了一个问题。
应在localDb中创建名为“AspNetBlog”的数据库(如果尚未创建)。当覆盖OnConfiguring()方法时,这应该发生在BlogDataContext.cs模型中,如BlogDataContext.cs中所示。
我得到的错误是“ FileNotFoundException:无法加载文件或程序集'System.Data.SqlClient,Version = 4.0.0.0,Culture = neutral,PublicKeyToken = b03f5f7f11d50a3a'。系统找不到文件指定。“
错误的完整输出可以在这里看到:https://gyazo.com/d8019f4b09732eb059bd291a7881b16b
请注意,我已通过进入VS2015的命令提示符并输入sqllocaldb start来确保localDb正在运行。
我不确定我要做些什么来修复此错误并成功创建数据库。该教程于2015年初发布,当时它仍在使用ASP.NET 5,因此我确信我已经正确地遵循了教程,我认为问题就在那里。
下面你可以看到我的代码。
BlogDataContext.cs
语句“Database.EnsureCreated();”时遇到错误到达了。 Debug的输出声明“ Exception抛出:EntityFramework.Relational.dll 中的'System.IO.FileNotFoundException'”。
using Microsoft.Data.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AspNetBlog.Models
{
public class BlogDataContext : DbContext
{
public DbSet<Post> Posts { get; set; }
public BlogDataContext()
{
Database.EnsureCreated();
}
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
base.OnConfiguring(optionsBuilder);
var connectionString = @"Server=(LocalDb)\MSSQLLocalDb;Database=AspNetBlog";
optionsBuilder.UseSqlServer(connectionString);
}
}
}
Post.cs
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace AspNetBlog.Models
{
public class Post
{
public long Id { get; set; }
public string Title { get; set; }
public DateTime PostedDate { get; set; }
public string Author { get; set; }
public string Body { get; set; }
}
}
PostsController.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using AspNetBlog.Models;
// For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860
namespace AspNetBlog.Controllers
{
public class PostsController : Controller
{
// GET: /<controller>/
public IActionResult Index()
{
return View();
}
[HttpPost]
public async Task<IActionResult> Create(Post post)
{
if (!ModelState.IsValid)
return View(post);
post.PostedDate = DateTime.Now;
post.Author = User.Identity.Name;
// Create new instance of blog data context
BlogDataContext db = new BlogDataContext();
db.Posts.Add(post); // - What should be added
await db.SaveChangesAsync(); // - Save changes to DB (Execute)
return View();
}
}
}
project.json
在这里你可以看到我正在使用“EntityFramework.SqlServer”:“7.0.0-beta8”。在我正在关注的教程中,使用版本“7.0.0-beta4”。我尝试使用与教程中使用的版本相同的版本,但似乎它与.NET Core不兼容。
{
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.1",
"type": "platform"
},
"Microsoft.Extensions.Logging.Console": "1.0.0",
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
"Microsoft.AspNetCore.Mvc": "1.0.1",
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
"EntityFramework.SqlServer": "7.0.0-beta8"
},
"tools": {
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
},
"frameworks": {
"netcoreapp1.0": {
"imports": [
"dotnet5.6",
"portable-net45+win8"
]
}
},
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},
"runtimeOptions": {
"configProperties": {
"System.GC.Server": true
}
},
"publishOptions": {
"include": [
"wwwroot",
"web.config"
]
},
"scripts": {
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
}
}
感谢您的阅读。任何建议都欢迎和赞赏。
答案 0 :(得分:0)
现在有一个Entity Framework Core的候选版本。尝试更新project.json以指向它。
答案 1 :(得分:0)
终于修好了自己。在&#39; project.json&#39;文件我添加了以下依赖项:
"System.Data.SqlClient": "4.1.0"
确保以这种方式书写,而不是用小写字母书写。这实际上是我尝试的第一件事之一,但我最初用小写字母写了它,并从控制台收到错误。我正在做的教程是&#34;启动并运行ASP.NET 5&#34;。 (所以像我这样的人正在做这个教程并遇到同样的问题可以找到这个,以防万一)