“Zdobądź ostatni identyfikator” Kod odpowiedzi

Zdobądź ostatni identyfikator

//Grab the highest value using the Max() method
int max = db.Products.Max(p => p.ID);
Agreeable Armadillo

Zdobądź ostatni identyfikator

//Grab the highest ID value using the OrderByDescending() method
var max = db.Products.OrderByDescending(p => p.ID).FirstOrDefault().ID;
Agreeable Armadillo

Odpowiedzi podobne do “Zdobądź ostatni identyfikator”

Pytania podobne do “Zdobądź ostatni identyfikator”

Więcej pokrewnych odpowiedzi na “Zdobądź ostatni identyfikator” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu