Creating a Connection String and Working with SQL Server LocalDB

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-string

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 ạ

cái cửa sổ này đúng ko ạ

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.

đây em chạy lần đầu mà bác không có hai cái dòng đó thì chạy ngon luôn

nhưng tại sao làm đúng theo hướng dẫn thì lại lỗi không chạu được ạ

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

lần đầu chạy thì ko có anh ạ nhưng em cứ làm theo hướng dẫn thôi mà

B1: bấm window + R
B2: gõ cmd
B3: gõ dòng lệnh sqllocaldb info vào để xem nó báo gì, rồi thay thê v11.0 bằng cái đó.

em tuowngr trong visual studio cow

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?