-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathProgram.cs
More file actions
34 lines (30 loc) · 897 Bytes
/
Program.cs
File metadata and controls
34 lines (30 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.Linq;
using CascadeExample.Data;
using Microsoft.EntityFrameworkCore;
namespace CascadeExample
{
class Program
{
static void Main(string[] args)
{
Db db = new Db();
// List<User> users = db.Users.ToList();
// db.Users.Add(new User()
// {
// Name = "Test user",
// Entries = new List<Entry>()
// {
// new Entry() { Content = "Entry 1" },
// new Entry() { Content = "Entry 2" }
// }
// });
// db.SaveChanges();
// List<User> users2 = db.Users.Include(u => u.Entries).ToList();
//
db.Users.RemoveRange(db.Users.Include(u => u.Entries));
db.SaveChanges();
}
}
}