- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你好,
我有一个这样的 linq to sql 问题:
tmpAdList1 = (from p in context.Ads
join h in context.AdCategories on p.CategoryId equals h.Id
join l in context.Location on p.UserLocationId equals l.Id
where
(adList.S == null || adList.S.Length < 1 || p.Title.Contains(adList.S) || p.Description.Contains(adList.S)) &&
(categorylevelOrder.Length < 1 || h.LevelOrder.StartsWith(categorylevelOrder)) &&
((locationIdList != null && lList.Contains(l.Id)) ||
(locationLevelOrder.Length < 1 || l.LevelOrder.StartsWith(locationLevelOrder))) &&
((adTypeO1 == AdType.Unknown && adTypeO2 == AdType.Unknown && adTypeO3 == AdType.Unknown && adTypeO4 == AdType.Unknown && adTypeO5 == AdType.Unknown) ||
(p.TypeOfAd == (int)adTypeO1 || p.TypeOfAd == (int)adTypeO2 || p.TypeOfAd == (int)adTypeO3 || p.TypeOfAd == (int)adTypeO4 || p.TypeOfAd == (int)adTypeO5)) && //Check for default filters
((AdListShowType)adList.ALS.ST == AdListShowType.Both || adList.ALS.ST == p.OwnerType) &&
(p.PublishedDate.HasValue && p.PublishedDate.Value.CompareTo(fetchAdsTo) >= 1) &&
((adOwnerType1.HasValue && adOwnerType2.HasValue) || p.OwnerType == (int)adOwnerType1.Value) &&
p.InactivatedDate == null
orderby p.CreatedDate descending
select p).ToList();
var list = new List<int> { 1, 2, 3, 5 };
var result = from s in DB.Something
where list.Contains(s.Id)
select s;
public List<Ad> GetAds(AdList adList, DateTime fetchAdsTo, out int totalAds)
{
AdType adTypeO1 = AdType.Unknown;
AdType adTypeO2 = AdType.Unknown;
AdType adTypeO3 = AdType.Unknown;
AdType adTypeO4 = AdType.Unknown;
AdType adTypeO5 = AdType.Unknown;
int? adOwnerType1 = null;
int? adOwnerType2 = null;
FilterModel filterModel = new FilterModel();
List<AdCategoryFilter> adCategoryFilterList;
AdsFilterValues adsFilterValues;
List<AdsFilterValueWrapper> seartchFilterValueList;
AdsFilterValueWrapper seartchFilterValue = null;
List<Ad> tmpAdList1;
List<Ad> tmpAdList2 = new List<Ad>();
int locationId = -1;
int[] locationIdList = null;
string locationLevelOrder = string.Empty;
int categoryId = -1;
string categorylevelOrder = string.Empty;
AdCategoryFilter adCategoryFilter;
AdListCompare adListCompare;
Boolean firstDropDownMatch = false;
Boolean secondDropDownMatch = false;
totalAds = 0;
int machedFilterCount;
categoryId = AdHandler.Instance.ExtractCategoryId(adList.CS);
//If there is multiple choises
//This is the last level, that means that we can check against the ID dircly
if (adList.LS.L3.Count > 0)
locationIdList = adList.LS.L3.ToArray();
else
locationId = AdHandler.Instance.ExtractLocationId(adList.LS);
switch ((AdOwnerType)adList.ALS.ST)
{
case AdOwnerType.Both:
adOwnerType1 = (int)AdOwnerType.Private;
adOwnerType2 = (int)AdOwnerType.Company;
break;
case AdOwnerType.Company:
adOwnerType1 = (int)AdOwnerType.Company;
break;
case AdOwnerType.Private:
adOwnerType1 = (int)AdOwnerType.Private;
break;
}
#region GetFilters
adCategoryFilterList = filterModel.GetCategoryFilterByCategory(categoryId);
seartchFilterValueList = FilterHandler.Instance.ConvertAdFilterToModel(adList.F, adCategoryFilterList, FilterType.Display);
#endregion
#region Set Default filters (Buy, Let, Sell, Swap, WishRent)
foreach (AdsFilterValueWrapper filterWrapper in seartchFilterValueList)
{
if ((adCategoryFilter = adCategoryFilterList.Where(c => c.Id == filterWrapper.FilterId).FirstOrDefault()) != null)
{
switch ((PublicAdFilterKey)adCategoryFilter.PublicAdFilterKey)
{
case PublicAdFilterKey.Buy:
{
if (filterWrapper.AdsFilterValues1.ValueNumber > 0)
adTypeO1 = AdType.Buy;
break;
}
case PublicAdFilterKey.Let:
{
if (filterWrapper.AdsFilterValues1.ValueNumber > 0)
adTypeO2 = AdType.Let;
break;
}
case PublicAdFilterKey.Sell:
{
if (filterWrapper.AdsFilterValues1.ValueNumber > 0)
adTypeO3 = AdType.Sell;
break;
}
case PublicAdFilterKey.Swap:
{
if (filterWrapper.AdsFilterValues1.ValueNumber > 0)
adTypeO4 = AdType.Swap;
break;
}
case PublicAdFilterKey.WishRent:
{
if (filterWrapper.AdsFilterValues1.ValueNumber > 0)
adTypeO5 = AdType.WishRent;
break;
}
}
}
}
#region Remove default filters fom filterList
adCategoryFilterList = adCategoryFilterList.Where(c => ((PublicAdFilterKey)c.PublicAdFilterKey) != PublicAdFilterKey.Buy &&
((PublicAdFilterKey)c.PublicAdFilterKey) != PublicAdFilterKey.Let &&
((PublicAdFilterKey)c.PublicAdFilterKey) != PublicAdFilterKey.Sell &&
((PublicAdFilterKey)c.PublicAdFilterKey) != PublicAdFilterKey.Swap &&
((PublicAdFilterKey)c.PublicAdFilterKey) != PublicAdFilterKey.WishRent).ToList();
#endregion
#endregion
var lList = adList.LS.L3.ToList<int>(); //new List<int> { 1, 2, 3, 5 };
using (BissEntities context = new BissEntities())
{
if (categoryId > 0)
categorylevelOrder = context.AdCategories.Where(c => c.Id.Equals(categoryId)).FirstOrDefault().LevelOrder.Trim();
if (locationId > 0)
locationLevelOrder = context.Location.Where(c => c.Id.Equals(locationId)).FirstOrDefault().LevelOrder.Trim();
tmpAdList1 = (from p in context.Ads
join h in context.AdCategories on p.CategoryId equals h.Id
join l in context.Location on p.UserLocationId equals l.Id
where
(adList.S == null || adList.S.Length < 1 || p.Title.Contains(adList.S) || p.Description.Contains(adList.S)) &&
(categorylevelOrder.Length < 1 || h.LevelOrder.StartsWith(categorylevelOrder)) &&
((locationIdList != null && lList.Contains(l.Id)) ||
(locationLevelOrder.Length < 1 || l.LevelOrder.StartsWith(locationLevelOrder))) &&
((adTypeO1 == AdType.Unknown && adTypeO2 == AdType.Unknown && adTypeO3 == AdType.Unknown && adTypeO4 == AdType.Unknown && adTypeO5 == AdType.Unknown) ||
(p.TypeOfAd == (int)adTypeO1 || p.TypeOfAd == (int)adTypeO2 || p.TypeOfAd == (int)adTypeO3 || p.TypeOfAd == (int)adTypeO4 || p.TypeOfAd == (int)adTypeO5)) && //Check for default filters
((AdListShowType)adList.ALS.ST == AdListShowType.Both || adList.ALS.ST == p.OwnerType) &&
(p.PublishedDate.HasValue && p.PublishedDate.Value.CompareTo(fetchAdsTo) >= 1) &&
((adOwnerType1.HasValue && adOwnerType2.HasValue) || p.OwnerType == (int)adOwnerType1.Value) &&
p.InactivatedDate == null
orderby p.CreatedDate descending
select p).ToList();
#region Filter collection
foreach (Ad ad in tmpAdList1)
{
machedFilterCount = 0;
adListCompare = AdListCompare.NotCompered;
if (adCategoryFilterList.Count > 0)
{
//Loop the filters that belongs to the choosen category
foreach (AdCategoryFilter existingFilter in adCategoryFilterList)
{
//Se if the ad has the proper filter If not return it
if ((adsFilterValues = ad.AdsFilterValues.Where(c => c.CategoryFilterId == existingFilter.Id).FirstOrDefault()) != null || existingFilter.PublicAdFilterKey > 0)
{
//If the filter is not a regular value filter but a filter pointed to a property on the ad
//Then extract the correct value and use it
if (existingFilter.PublicAdFilterKey > 0)
{
adsFilterValues = new AdsFilterValues();
adsFilterValues.CategoryFilterId = existingFilter.Id;
switch ((PublicAdFilterKey)existingFilter.PublicAdFilterKey)
{
case PublicAdFilterKey.Price:
{
adsFilterValues.ValueNumber = ad.Price;
break;
}
}
}
if ((seartchFilterValue = seartchFilterValueList.Where(c => c.AdsFilterValues1.CategoryFilterId == adsFilterValues.CategoryFilterId).FirstOrDefault()) != null)
{
firstDropDownMatch = false;
secondDropDownMatch = false;
adListCompare = AdListCompare.Compared;
switch ((FilterControlType)existingFilter.DisplayFilterControlType)
{
case FilterControlType.TwoDropDown:
//Check so the first dropdown value compare
//If the index is the first then any value will do
if (seartchFilterValue.FilterIndexPosition1 == FilterIndexPosition.First)
firstDropDownMatch = true;
else
{
if (adsFilterValues.ValueNumber.Value >= seartchFilterValue.AdsFilterValues1.ValueNumber.Value)
firstDropDownMatch = true;
}
if (firstDropDownMatch)
{
//Check so the second dropdown value compare
//If the index is the last then any value will do
if (seartchFilterValue.FilterIndexPosition2 == FilterIndexPosition.Last)
secondDropDownMatch = true;
else
{
if (adsFilterValues.ValueNumber.Value <= seartchFilterValue.AdsFilterValues2.ValueNumber.Value)
secondDropDownMatch = true;
}
if (secondDropDownMatch)
adListCompare = AdListCompare.Approved;
}
break;
case FilterControlType.DropDown:
//Check so the first dropdown value compare
//If the index is the first then any value will do
if (seartchFilterValue.FilterIndexPosition1 == FilterIndexPosition.First)
{
if (adsFilterValues.ValueNumber.Value <= seartchFilterValue.AdsFilterValues1.ValueNumber.Value)
firstDropDownMatch = true;
}
if (seartchFilterValue.FilterIndexPosition1 == FilterIndexPosition.Last)
{
if (adsFilterValues.ValueNumber.Value >= seartchFilterValue.AdsFilterValues1.ValueNumber.Value)
firstDropDownMatch = true;
}
else
{
if (adsFilterValues.ValueNumber.Value == seartchFilterValue.AdsFilterValues1.ValueNumber.Value)
firstDropDownMatch = true;
}
if (firstDropDownMatch)
adListCompare = AdListCompare.Approved;
break;
case FilterControlType.TextBox:
if (adsFilterValues.ValueString.Equals(seartchFilterValue.AdsFilterValues1.ValueString))
adListCompare = AdListCompare.Approved;
break;
case FilterControlType.CheckBox:
if (adsFilterValues.ValueNumber != null && adsFilterValues.ValueNumber.Value == seartchFilterValue.AdsFilterValues1.ValueNumber.Value)
adListCompare = AdListCompare.Approved;
break;
default:
adListCompare = AdListCompare.NotCompered;
break;
}
//If no value is set, then break;
if (adListCompare != AdListCompare.Approved)
break;
machedFilterCount++;
}
}
else
{
//If the ad is missing the filter then return it anyway, it might as well be correct
adListCompare = AdListCompare.Approved;
machedFilterCount = adCategoryFilterList.Count();
}
}
}
else
{
adListCompare = AdListCompare.Approved;
machedFilterCount = adCategoryFilterList.Count();
}
if (adListCompare == AdListCompare.Approved && machedFilterCount == adCategoryFilterList.Count())
tmpAdList2.Add(ad);
}
#endregion
if (adList.ALS.OB == (int)AdListOrderBy.Price)
tmpAdList2 = tmpAdList2.OrderBy(c => c.Price).ToList();
totalAds = tmpAdList2.Count();
return tmpAdList2.Skip((adList.ALS.P - 1) * adList.ALS.CP).Take(adList.ALS.CP).ToList();
}
}
public List<Ad> GetAds(AdList adList, DateTime fetchAdsTo, out int totalAds)
{
LocationModel locationModel = new LocationModel();
FilterModel filterModel = new FilterModel();
List<AdCategoryFilter> adCategoryFilterList;
List<AdsFilterValueWrapper> seartchFilterValueList;
int categoryId = -1;
List<Ad> outputList;
totalAds = 0;
#region Fetch the first ads by location
outputList = GetAdsByLocations(locationModel.GetLocationOrderList(adList.GetLocationIds()), fetchAdsTo, false);
if(outputList.Count < 1)
return outputList;
#endregion
#region GetFilters
categoryId = AdHandler.Instance.ExtractCategoryId(adList.CS);
adCategoryFilterList = filterModel.GetCategoryFilterByCategory(categoryId);
seartchFilterValueList = FilterHandler.Instance.ConvertAdFilterToModel(adList.F, adCategoryFilterList, FilterType.Display);
#endregion
#region Filter Default filters (Buy, Let, Sell, Swap, WishRent)
FilterDefaultCustomFilters(outputList, adCategoryFilterList, seartchFilterValueList);
if (outputList.Count == 0)
return outputList;
else
{
#region Remove default filters fom filterList
adCategoryFilterList = adCategoryFilterList.Where(c => ((PublicAdFilterKey)c.PublicAdFilterKey) != PublicAdFilterKey.Buy &&
((PublicAdFilterKey)c.PublicAdFilterKey) != PublicAdFilterKey.Let &&
((PublicAdFilterKey)c.PublicAdFilterKey) != PublicAdFilterKey.Sell &&
((PublicAdFilterKey)c.PublicAdFilterKey) != PublicAdFilterKey.Swap &&
((PublicAdFilterKey)c.PublicAdFilterKey) != PublicAdFilterKey.WishRent).ToList();
#endregion
}
#endregion
#region Filter Custom filters
this.FilterCustomFilters(outputList, adCategoryFilterList, seartchFilterValueList);
#endregion
#region Order
switch ((AdListOrderBy)adList.ALS.OB)
{
case AdListOrderBy.Price:
outputList = outputList.OrderBy(c => c.Price).ToList(); break;
case AdListOrderBy.Latest:
outputList = outputList.OrderByDescending(c => c.PublishedDate).ToList(); break;
}
#endregion
#region Total Ad Count
totalAds = outputList.Count();
#endregion
#region Paging
outputList = outputList.Skip((adList.ALS.P - 1) * adList.ALS.CP).Take(adList.ALS.CP).ToList();
#endregion
return outputList;
}
public List<Ad> GetAdsByLocations(string[] locationLevelOrderList, DateTime? fetchAdsTo, Boolean inactive) //, List<Ad> adList = null)
{
List<Ad> output;
using (BissEntities context = new BissEntities())
{
if (fetchAdsTo.HasValue)
{
if (locationLevelOrderList.Count() == 0)
{
output = (from a in context.Ads
join l in context.Location on a.UserLocationId equals l.Id
where a.InactivatedDate.HasValue == inactive &&
(a.PublishedDate.HasValue && a.PublishedDate.Value.CompareTo(fetchAdsTo.Value) >= 1)
select a).ToList();
}
else
{
output = (from a in context.Ads
join l in context.Location on a.UserLocationId equals l.Id
where a.InactivatedDate.HasValue == inactive &&
(a.PublishedDate.HasValue && a.PublishedDate.Value.CompareTo(fetchAdsTo.Value) >= 1) &&
(locationLevelOrderList.Where(c => l.LevelOrder.StartsWith(c)).FirstOrDefault() != null)
select a).ToList();
}
}
else
{
if (locationLevelOrderList.Count() == 0)
{
output = (from a in context.Ads
join l in context.Location on a.UserLocationId equals l.Id
where a.InactivatedDate.HasValue == inactive
select a).ToList();
}
else
{
output = (from a in context.Ads
join l in context.Location on a.UserLocationId equals l.Id
where a.InactivatedDate.HasValue == inactive &&
(locationLevelOrderList.Count() == 0 || locationLevelOrderList.Where(c => l.LevelOrder.StartsWith(c)).FirstOrDefault() != null)
select a).ToList();
}
}
}
return output;
}
最佳答案
在您的查询中,您可以进行比较:
... locationIdList != null ...
locationIdList
是
int[]
类型,查询不能被翻译,因为它只支持简单的比较(如错误状态)。
关于.net - Linq 到实体和包含?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5522218/
给出数据库表中的以下信息: Col 1, Col2, Col3 1 , x , G 1 , y , H 2 , z , J 2 , a , K 2 , a
linq 的一般缺点是什么。 最佳答案 刚开始使用时可能很难理解 延迟执行可以将错误与其原因(在时间方面)分开 进程外 LINQ(例如 LINQ to SQL)总是有点漏洞百出的抽象——你需要知道什么
当我使用 LINQ Where 子句时,返回的项目列表是否遵循它们在原始列表中的顺序? 最佳答案 这取决于被查询的集合如何拥有它的 GetEnumerator被执行。如 GetEnumerator按照
在 Linq 中进行连接时,例如 from c in customers join x in somelistofcustomers on x.Id equals c.Id 你会得到错误 x is n
我正在使用 LINQ 来查询数据。考虑用户只想报告 3 个字段中的 1 个的情况? (见下文) 谁能告诉我如何动态构建查询? 谢谢 DD var query = from cl in db.t
假设我们有下表: Person: PersonID, Name, Age, Gender 并且我们提供了一个搜索功能,允许用户根据名称 来搜索表。和/或 年龄。 编写 SQL(或 LI
这应该很容易。 我要检查两个列表是否相同,因为它们包含所有相同的元素,顺序不重要。 重复的元素被认为是相等的,即new[]{1,2,2}与new[]{2,1}相同 最佳答案 var same = li
假设我有一个数组,我想对varchar进行LINQ查询,该查询返回在varchar中任何位置具有数组元素的任何记录。 这样的事情会很甜蜜。 string[] industries = { "airli
我正在努力寻找 LINQ orderby 示例,其中数据按列索引排序。这是可能的吗? 谢谢 最佳答案 LINQ 中没有列这样的概念,只有字段和属性。您的意思可能是在您创建的匿名类型中指定属性的索引:
我有一个类项目。 class Item{ public int Id { get; set; } public DateTime CreatedDate { get;
我有一张 table 叫做产品。我想获取 productID 为 2 OR 6 OR 9 的所有产品 SQL 是:Select * from products where productID=2 OR
使用时 Contains对于 Linq-to-objects 上的动态 Linq,搜索区分大小写。我希望能够搜索不区分大小写的(如 Linq-to-sql,因为 SQL 服务器默认执行此操作)。 就像
有人能告诉我如何将此查询转换为 linq 吗? SELECT dpr_ts ,dpr_close ,nvl((SELECT pay.pay_dividend
我正在使用linq to实体(EF)。 我有一个采用4个字符串参数的构造函数。根据什么参数不为null,我必须构建linq查询。我可以使用if else语句,但是在这种情况下,我还有其他带有10个参数
下面是我的代码的简化版本。我希望 p1和 p2是平等的,还有p1_after和 p2_after是相等的,因为 GetPerson1() 之间的唯一区别是和 GetPerson2()是 .ToList
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 7年前关闭。 Improve t
我看到一些代码是 linq 用于遍历 c# 中的字典对象。我认为 linq 只是用于 linq 到 sql 的数据库。提到的代码中使用的 linq 是一个选择类型的语句,只是没有数据库。 有没有 li
我刚刚开始在一个中型项目中使用LINQ to SQL,并且想加深我对L2S提供的优势的理解。 我看到的一个缺点是它增加了另一层代码,我的理解是,它的性能比使用存储过程和ADO.Net慢。似乎调试也可能
可绑定(bind) LINQ 和连续 LINQ 之间的主要区别是什么? •可绑定(bind)LINQ:www.codeplex.com/bindablelinq • 连续 LINQ:www.codep
Linq 中没有内置全文搜索,而且似乎没有很多关于该主题的帖子,所以我玩了一下,并为我的实用类想出了这个方法: public static IEnumerable GenericFullTextSea
我是一名优秀的程序员,十分优秀!