C
C#•3y ago
Bobby Bob

Error on trying to generate a MSSQLocalDB Database using EFCore on Rider [Answered]

https://github.com/blueboy90780/EF-Core-6.0-Practice I'm following the tutorial on https://app.pluralsight.com/library/courses/ef-core-6-fundamentals/table-of-contents - you could download the exercise file from the site. They have a snapshot of the code on the start and end of each learning module, what I'm trying to do is just follow along and do everything they're doing. So my target result is what they are able to do at the end of each module. Right now I'm on module "Building Your First Application using EF Core" but I'm getting an error trying to run the same code she's producing. The specific video I'm referring to is this "Reading and Writing Some Data". Alternatively, you can just clone my Git Repo above, run the program to see the error message on your respective IDEs. I'm not sure why I'm getting the error message it's showing and how I can see the database that the code makes. Even if it does run successfully, will that database persist even after the execution of the code ends?
GitHub
GitHub - blueboy90780/EF-Core-6.0-Practice
Contribute to blueboy90780/EF-Core-6.0-Practice development by creating an account on GitHub.
61 Replies
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
I get this error when trying to run my code. I tried to run the author's code on pluralsight as well but got this error
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
This is the error I get when trying to connect on Windows 11 :/
Kouhai
Kouhai•3y ago
GitHub
Cannot connect to (localdb) from .NET Core except via Named Pipe on...
Description I'm trying to connect to SQL Server Express LocalDB from .NET Core 6 on Windows 11 ARM. If I use a connection string that refers to it using the instance name "Data Sou...
Kouhai
Kouhai•3y ago
It seems like it's an issue with LocalDb on ARM devices.
Bobby Bob
Bobby BobOP•3y ago
I fixed it
Bobby Bob
Bobby BobOP•3y ago
SQL Server Express LocalDB - SQL Server
Become familiar with SQL Server Express LocalDB. Developers can use this lightweight Database Engine for writing and testing Transact-SQL code.
Kouhai
Kouhai•3y ago
NVM then 😅
Bobby Bob
Bobby BobOP•3y ago
Solution was through there, apparently I needed to install Local DB via the SQL Server 2019 installer
Kouhai
Kouhai•3y ago
Yeah, if LocalDb wasn't installed it wouldn't work guess you can close it as solved now 😅 /solve
Bobby Bob
Bobby BobOP•3y ago
Also one more question
Bobby Bob
Bobby BobOP•3y ago
Is there a equivalent in Rider?
Kouhai
Kouhai•3y ago
Yes, you can refer to this page for how to set it up
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
What's the difference between these 2?
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
I followed this link you provided and the command return one active LocalDB instance I think this was created with the script from the course
Bobby Bob
Bobby BobOP•3y ago
GitHub
PluralsightEFCore6Fundamentals/M02 Building Your FIrst App/After at...
All code samples for EF Core 6 Fundamentals on Pluralsight - PluralsightEFCore6Fundamentals/M02 Building Your FIrst App/After at main · julielerman/PluralsightEFCore6Fundamentals
Bobby Bob
Bobby BobOP•3y ago
This is the solution that I am using
Kouhai
Kouhai•3y ago
I'm not sure I follow, do you expect it to return more than one instance?
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
No, I might misunderstand. But I think the solution above actually created a new database that persisted after the program ended
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
This is the output I get when I try to run Program.cs within PublisherConsole.csproj Each time I run it, another set of those same repeating output gets added to one another So like the first time I ran the program, there's only one set, this is the third time I've ran it so now I have 3 sets. I think this is a good indication to me that perhaps there already exists 2 databases and I just created a new one.... My goal is still to do this, to be able to view all database that Program.cs made and see just how many duplicates I have I don't want to create a new database each time I run the program
Kouhai
Kouhai•3y ago
No, you have one MSSQLLocalDB
Bobby Bob
Bobby BobOP•3y ago
This solution has 3 projects btw, Program.cs is located inside the console project ah..... is this like the LocalDB itself or is this an instance, aka a copy of LocalDB of the LocalDB schema? Also, why does Program.cs keep producing more sets of the same repeating output everytime I run it?
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
I just tried running it again for the fourth time and this is what I got 😬
Kouhai
Kouhai•3y ago
(localdb)\\MSSQLLocalDB is your SQL instance, PubDatabase is the actual database The app keeps adding the same data everytime it's run to the database
Bobby Bob
Bobby BobOP•3y ago
OOOOOOO So there's only one database the entire time????
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
What does it mean by an "instance" in this context then?
Kouhai
Kouhai•3y ago
I'm not on your machine so I wouldn't know if there exists another database, but for this application, yes it only access a single database.
Bobby Bob
Bobby BobOP•3y ago
What even is an instance? Is it instance the same way an object is to a class in C#?
Kouhai
Kouhai•3y ago
Database Engine Instances (SQL Server) - SQL Server
Find out about Database Engine instances. View information on tasks you can perform on instances, such as configuring properties and enabling protocols.
Bobby Bob
Bobby BobOP•3y ago
OOoooh Interesting... is there a diagram to illustrate this? Also, if instance refers to an instance of a Database Engine does this imply that LocalDB is a Database Engine?
Kouhai
Kouhai•3y ago
Illustrate what? For LocalDB, yes it's an instance of Database engine
Bobby Bob
Bobby BobOP•3y ago
Does "server" refer to my local machine in this case?
Kouhai
Kouhai•3y ago
Yes
Bobby Bob
Bobby BobOP•3y ago
So in this screenshot, MSSQLLocalDB is an instance of LocalDB which is the database engine right?
Kouhai
Kouhai•3y ago
You mean creating a development instance in step 2?
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
Yep I got it to work now Now that I have maintained a connection, how do I see all those data in the database viewer?
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
Also why is it that my instance have multiple database even though I created only one?
Kouhai
Kouhai•3y ago
The other databases are used internally by the db server.
Bobby Bob
Bobby BobOP•3y ago
Ah, I see So the only one that I have made is PubDatabase
Bobby Bob
Bobby BobOP•3y ago
Bobby Bob
Bobby BobOP•3y ago
How do I delete all the rows in both of my tables? I've found out where all the data is located But I want to delete all of them and start over
Kouhai
Kouhai•3y ago
I'm not really sure because I don't rider's db plugin, but I assume you can select them and click on the red minus button on the top. Then save
Bobby Bob
Bobby BobOP•3y ago
oh, which one do you usually use to handle database? Is it DataGrip, I want to try using other tools if I can
Kouhai
Kouhai•3y ago
I usually use CLI 😅
Bobby Bob
Bobby BobOP•3y ago
.... That's next level bro Anyways, thank you so much for helping out 😄
Bobby Bob
Bobby BobOP•3y ago
@Kouhai
Accord
Accord•3y ago
✅ This post has been marked as answered!

Did you find this page helpful?