C#
Entity Framework 필드에 최대값(.Max()) 구하기
saltdoll
2018. 1. 30. 09:24
반응형
EF(Entity Framework)에서 필드에 최대 값 구하기
다음과 같이 하면, Persons의 객체중에 최고 Age값을 뽑아 냅니다.
using System.Linq; |
int maxAge = context.Persons.Max(p => p.Age); |
참고: https://stackoverflow.com/questions/7542021/how-to-get-max-value-of-a-column-using-entity-framework
반응형