コード例 #1
0
 public TrafficStop Get(int id)
 {
     DataContext context = new DataContext();
     return context.TrafficStops.Where(ts => ts.Id == id).FirstOrDefault();
 }
コード例 #2
0
 public List<TrafficStop> Sample()
 {
     DataContext context = new DataContext();
     return context.TrafficStops.Where(ts => ts.Id < 100).ToList();
 }
コード例 #3
0
 public List<TrafficStop> Get()
 {
     DataContext context = new DataContext();
     return context.TrafficStops.ToList<TrafficStop>();
 }