You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using EFLol;
|
|
|
|
ChampionEntity Zeus = new ChampionEntity
|
|
{
|
|
Name = "Zeus",
|
|
Bio = "Zeus is the king of the gods."
|
|
};
|
|
|
|
using (var context = new ChampionContext())
|
|
{
|
|
Console.WriteLine("Adding Zeus to the database...");
|
|
context.Champions.Add(Zeus);
|
|
context.SaveChanges();
|
|
} |