1.1: ElevenNote.Data
Last updated
Last updated
In this module, we'll create our solution with our ElevenNote.Data layer.
This layer will be used to house the information about our Data Entities. These entities will match the data tables in our project. Later on, we will also add authentication data to this layer.
Let's add the assembly for this layer now:
In the Solution Explorer, right click on the ElevenNote Solution
Make sure to right click on the Solution and NOT the project ElevenNote.WebMVC
Go to Add -> New Project
Select Visual C#, then Windows Classic Desktop
Choose Class Library
Name the project ElevenNote.Data
In the ElevenNote.Data project, right click on Class1.cs
and delete it. Some people might be able to hit ctrl + x.
We'll leave this project empty for now.