コード例 #1
0
ファイル: Line.cs プロジェクト: saxx/Erbsenzaehler
 public static IEnumerable <Line> ByMonth(this IEnumerable <Line> q, Month month)
 {
     return(ByMonth(q, month.Date));
 }
コード例 #2
0
ファイル: Line.cs プロジェクト: saxx/Erbsenzaehler
 public static IQueryable <Line> ByMonth(this IQueryable <Line> q, Month month)
 {
     return(ByMonth(q, month.Date));
 }