Esempio n. 1
0
 private static bool StatusNeq(Account account, AbstractQuery query)
 => (account.SexStatus & query._sexStatus) != SexStatus.None;
Esempio n. 2
0
 private static bool PhoneCode(Account account, AbstractQuery query) => query.phoneCode.IsPrefixOf(account.phone);
Esempio n. 3
0
 private static bool StatusEq(Account account, AbstractQuery query)
 => (account.SexStatus & SexStatus.AllStatus) == query._sexStatus;
Esempio n. 4
0
 private static bool FirstNameNull(Account account, AbstractQuery query) => account.fnameIndex == 0;
Esempio n. 5
0
 private static bool LastNameEq(Account account, AbstractQuery query) => account.snameIndex == query.snameIndex;
Esempio n. 6
0
 private static bool EmailDomain(Account account, AbstractQuery query) => account.Email._domain == query.domainIndex;
Esempio n. 7
0
 private static bool FirstNameEq(Account account, AbstractQuery query) => query.fnameIndex != 0 && query.fnameIndex == account.fnameIndex;
Esempio n. 8
0
 private static bool InterestsAny(Account account, AbstractQuery query) => account.InterestIndexes.Count > 0 && account.InterestIndexes.ContainsAny(query.interestIndexes);
Esempio n. 9
0
 private static bool LikesOne(Account account, AbstractQuery query) => account.LikedOne(query.like);
Esempio n. 10
0
 private static bool BirthGt(Account account, AbstractQuery query) => query.birth < account.birth;
Esempio n. 11
0
 private static bool BirthYear(Account account, AbstractQuery query) => query.birthFrom <= account.birth && account.birth < query.birthTo;
Esempio n. 12
0
 private static bool CityNull(Account account, AbstractQuery query) => account.cityIndex == 0;
Esempio n. 13
0
 private static bool CityAny(Account account, AbstractQuery query) => query.cities != null && query.cities.Contains(account.cityIndex);
Esempio n. 14
0
 private static bool PhoneNotNull(Account account, AbstractQuery query) => !account.phone.IsEmpty;
Esempio n. 15
0
 private static bool SexStatusEq(Account account, AbstractQuery query)
 => account.SexStatus == query._sexStatus;
Esempio n. 16
0
 private static bool LikesAll(Account account, AbstractQuery query) => account.likes != null && account.LikedAll(query.likes);
Esempio n. 17
0
 private static bool SexStatusNeq(Account account, AbstractQuery query)
 => (account.SexStatus | query._sexStatus) == query._sexStatus;
Esempio n. 18
0
 private static bool PremiumNow(Account account, AbstractQuery query) => account.HasPremium();
Esempio n. 19
0
 private static bool EmailGt(Account account, AbstractQuery query) => account.Email.CompareTo(query.email) > 0;
Esempio n. 20
0
 private static bool PremiumNotNull(Account account, AbstractQuery query) => account.premium.start != 0;
Esempio n. 21
0
 private static bool FirstNameAny(Account account, AbstractQuery query) => query.fnamesIndexes.Contains(account.fnameIndex);
Esempio n. 22
0
 private static bool CountryEq(Account account, AbstractQuery query) => query.countryIndex > 0 && query.countryIndex == account.countryIndex;
Esempio n. 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);
Esempio n. 24
0
 private static bool CountryNotNull(Account account, AbstractQuery query) => account.countryIndex != 0;
Esempio n. 25
0
 private static bool LastNameNotNull(Account account, AbstractQuery query) => account.snameIndex != 0;
Esempio n. 26
0
 private static bool Joined(Account account, AbstractQuery query) => query.joinedFrom <= account.joined && account.joined < query.joinedTo;