Exemplo n.º 1
0
 public static Expression<Func<Tag, bool>> WhereNotEquals( Tag tag )
 {
     return x => x.TagId != tag.TagId;
 }
Exemplo n.º 2
0
 public static Expression<Func<PostTag, bool>> WhereTagEquals( Tag tag )
 {
     return x => x.TagId == tag.TagId;
 }