Пример #1
0
 public static Expression<Func<Tag, bool>> WhereNotEquals( Tag tag )
 {
     return x => x.TagId != tag.TagId;
 }
Пример #2
0
 public static Expression<Func<PostTag, bool>> WhereTagEquals( Tag tag )
 {
     return x => x.TagId == tag.TagId;
 }