예제 #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;