Creating a Connection String and Working with SQL Server LocalDB

Theo: nguyenhaidang.name.vn | 27/04/2018 - 03:20

 em có làm theo bài hướng đãn này trên trang chủ của ms . đến bài này thì khi mở file Web.config ra thì không thấy phần tử này đâu và xong rồi em vẫn tiếp tục thêm hai dòng này đúng như bài hướng dẫn

 

<connectionStrings>     <add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-MvcMovie-20130603030321.mdf;Initial Catalog=aspnet-MvcMovie-20130603030321;Integrated Security=True" providerName="System.Data.SqlClient" />     <add name="MovieDBContext"    connectionString="Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\Movies.mdf;Integrated Security=True" providerName="System.Data.SqlClient" />

và đây là lớp model của em và lớp DBContext

 

public class Movie     {         public int ID { get; set; }         public string Title { get; set; }         public DateTime ReleaseDate { get; set; }         public string Genre { get; set; }         public decimal Price { get; set; }     }     public class MovieDbContext:DbContext     {         public DbSet<Movie> Movie { get; set; }     } ```  khi em tạo tạo Controller từ  movie nó sinh ra code bình thường   nhưng tạo sao khi chạy hàm index

public ActionResult Index() { return View(db.Movie.ToList()); }

thì nếu có hai dòng kia ở trong file Web.config thì nó lại phát sinh ngoại lệ ở dòng return View(db.Movie.ToList()); còn nếu bỏ hai dòng đó đi thì lại chạy ngon bình thường luôn ạ .Em cảm ơn
bài hướng dẫn đó đây ạ https://docs.microsoft.com/en-us/aspnet/mvc/overview/getting-started/introduction/creating-a-connection-string2

 
  • created

    Jun ''17
  • last reply

    Jun ''17
  • 10

    replies

  • 248

    views

  • 3

    users

  • 2

    links

 

bạn thử chạy lệnh "sqllocaldb Info" ở cmd xem local DB của bạn là gì, có thể trong máy của bạn k phải là v11.0

 
 

bác cho em hỏi mở cái cửa sổ để chạy cái lệnh đấy ở đâu ạ

 
 
 

 

connectionString="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-MvcMovie-20130603030321.mdf;Initial Catalog=aspnet-MvcMovie-20130603030321;Integrated Security=True" providerName="System.Data.SqlClient" />

đúng file mdf không, có cấp quyền user/pass không ko.
khi khôn có 2 dòng nay nó lấy database default là localdb. trong bài viết có nói mà

Entity Framework will default to using LocalDB. In this section we''ll explicitly add a connection string in the Web.config file of the application.

 
 
 
 

có cái file mdf này không :D. nó kết nối đến file này mà

 
 
 
 
Back Head Print
Tin khác

Search GridView with Paging on TextBox KeyPress using jQuery in ASP.Net    (28/07/2010)

Bootstrap AutoComplete TextBox example using jQuery TypeAhead plugin in ASP.Net with C# and VB.Net    (28/07/2010)

Disable Button and Submit button after one click using JavaScript and jQuery    (29/07/2010)

Split and convert Comma Separated (Delimited) String to Table in SQL Server    (01/09/2010)

Select Column values as Comma Separated (Delimited) string in SQL Server using COALESCE    (01/09/2010)