示例#1
0
 private static bool StatusNeq(Account account, AbstractQuery query)
 => (account.SexStatus & query._sexStatus) != SexStatus.None;
示例#2
0
 private static bool PhoneCode(Account account, AbstractQuery query) => query.phoneCode.IsPrefixOf(account.phone);
示例#3
0
 private static bool StatusEq(Account account, AbstractQuery query)
 => (account.SexStatus & SexStatus.AllStatus) == query._sexStatus;
示例#4
0
 private static bool FirstNameNull(Account account, AbstractQuery query) => account.fnameIndex == 0;
示例#5
0
 private static bool LastNameEq(Account account, AbstractQuery query) => account.snameIndex == query.snameIndex;
示例#6
0
 private static bool EmailDomain(Account account, AbstractQuery query) => account.Email._domain == query.domainIndex;
示例#7
0
 private static bool FirstNameEq(Account account, AbstractQuery query) => query.fnameIndex != 0 && query.fnameIndex == account.fnameIndex;
示例#8
0
 private static bool InterestsAny(Account account, AbstractQuery query) => account.InterestIndexes.Count > 0 && account.InterestIndexes.ContainsAny(query.interestIndexes);
示例#9
0
 private static bool LikesOne(Account account, AbstractQuery query) => account.LikedOne(query.like);
示例#10
0
 private static bool BirthGt(Account account, AbstractQuery query) => query.birth < account.birth;
示例#11
0
 private static bool BirthYear(Account account, AbstractQuery query) => query.birthFrom <= account.birth && account.birth < query.birthTo;
示例#12
0
 private static bool CityNull(Account account, AbstractQuery query) => account.cityIndex == 0;
示例#13
0
 private static bool CityAny(Account account, AbstractQuery query) => query.cities != null && query.cities.Contains(account.cityIndex);
示例#14
0
 private static bool PhoneNotNull(Account account, AbstractQuery query) => !account.phone.IsEmpty;
示例#15
0
 private static bool SexStatusEq(Account account, AbstractQuery query)
 => account.SexStatus == query._sexStatus;
示例#16
0
 private static bool LikesAll(Account account, AbstractQuery query) => account.likes != null && account.LikedAll(query.likes);
示例#17
0
 private static bool SexStatusNeq(Account account, AbstractQuery query)
 => (account.SexStatus | query._sexStatus) == query._sexStatus;
示例#18
0
 private static bool PremiumNow(Account account, AbstractQuery query) => account.HasPremium();
示例#19
0
 private static bool EmailGt(Account account, AbstractQuery query) => account.Email.CompareTo(query.email) > 0;
示例#20
0
 private static bool PremiumNotNull(Account account, AbstractQuery query) => account.premium.start != 0;
示例#21
0
 private static bool FirstNameAny(Account account, AbstractQuery query) => query.fnamesIndexes.Contains(account.fnameIndex);
示例#22
0
 private static bool CountryEq(Account account, AbstractQuery query) => query.countryIndex > 0 && query.countryIndex == account.countryIndex;
示例#23
0
 private static bool LastNameStarts(Account account, AbstractQuery query)
 //TODO: this method sucks currently. Introduce a good index.
 => account.snameIndex > 0 && StringIndexer.LastNames[account.snameIndex].StartsWith(query.snamePrefix, StringComparison.Ordinal);
示例#24
0
 private static bool CountryNotNull(Account account, AbstractQuery query) => account.countryIndex != 0;
示例#25
0
 private static bool LastNameNotNull(Account account, AbstractQuery query) => account.snameIndex != 0;
示例#26
0
 private static bool Joined(Account account, AbstractQuery query) => query.joinedFrom <= account.joined && account.joined < query.joinedTo;