-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
39 lines (34 loc) · 904 Bytes
/
Program.cs
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
35
36
37
38
39
using EFCoreCrud.Data;
using Microsoft.EntityFrameworkCore;
using EFCoreCrud.Models;
using (var context = new MyDataContext())
{
//Adicionando evento..
var evento = new Evento
{
Titulo = "Teste",
Data = DateTime.Now,
};
context.Eventos.Add(evento);
var eventoConcluido = new Evento
{
Titulo = "Teste concluido",
Data = DateTime.Now,
Concluido = true
};
context.Eventos.Add(eventoConcluido);
context.SaveChanges(); //persistindo no banco
var eventos = context.Eventos
.AsNoTracking() //somente leitura, não será utilizado para update e etc..
.Where(x => x.Concluido == true)
.Select(x => new
{
Id = x.Id,
Titulo = x.Titulo,
})
.ToList();
foreach(var item in eventos)
{
Console.WriteLine(item.Titulo);
}
}