- 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/
都是整数,但一直报错 "Only assignment, call, increment, decrement, await, and new object expressions can be us
我有以下情况:一个“对话”实体/表,它有多个关联的标签。Tag 也是一个实体/表 - key/id 是 tagName(一个字符串)。 在客户端 (javascript),我在处理标签时使用字符串数组
我想通过 maven java 源代码生成器自动生成 java 源代码。我想通过查看一个大实体 xml 文件来创建实体类,该文件将包含系统中的所有实体和实体关系。据我搜索,目前maven中没有这样的插
我有一段时间有这个疑问,有人说 EJB 3.0 中没有所谓的实体 bean。有没有可能这样说,EJB 3.0 使用 JPA 来持久化数据并且没有对以前版本(EJB 2.1)中的实体 bean 进行增强
我观看了关于 Core Data 的 2016 WWDC 视频并查看了各种教程。我见过使用 Core Data Framework 创建对象以持久保存到 managedObjectContext 中的
实体(entites) 用于定义引用普通文本或特殊字符的快捷方式的变量,可在内部或外部进行声明 实体引用是对实体的引用 声明一个内部实体 语法: <!ENTITY 实体名称 "
This page建议 !ENTITY: If you want to avoid duplication, consider using XML entities (for example, [ ]
我正在努力解决这个问题:如何判断一个概念是聚合根还是只是一个实体(属于 AR 的一部分)? : 他们都有 ID 它们都是由实体或值对象组成 也许如果我需要引用其他 AR 中的实体,那么我需要将其设为
我使用 Symfony2 和 Doctrine,我有一个关于实体的问题。 出于性能方面的考虑,我想知道是否可以在不进行所有关联的情况下使用实体? 目前,我还没有找到另一种方法来创建继承带有关联的类的模
我已经尝试在 HTML 中包含以下代码,用于附加文件符号。但它显示一个空的白框。 📎 📎 📎 是否有替代的 HTML 附加文件符号实体? 如果没有,我们可以手动创建
我在 grails 中有一个域类......我如何让 gorm 在创建数据库时忽略这个实体?就别管它了。 最佳答案 如果我理解,你不想从域类创建表?如果是,请在域类中使用此代码: static map
我正在努力解决这个问题:如何判断一个概念是聚合根还是只是一个实体(属于 AR 的一部分)? : 他们都有 ID 它们都是由实体或值对象组成 也许如果我需要引用其他 AR 中的实体,那么我需要将其设为
我已经尝试在 HTML 中包含以下代码,用于附加文件符号。但它显示一个空的白框。 📎 📎 📎 是否有替代的 HTML 附加文件符号实体? 如果没有,我们可以手动创建
如何在我的实体中以 14-04-2017 格式存储日期? 但我必须从字符串中解析它。 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-
我需要从两个连接表中获取数据。数据集是什么类型?我是否需要创建一个包含这两个表中的属性的类以用于数据集类型,或者我可以使用实体模式中的类型。我如何修改我的方法才能正常工作? public static
好的,我们正在尝试建立一个中央站点来查看来自销售我们产品的多个供应商的数据。这些多个供应商使用不同的销售系统(确切地说是两个不同的系统),因此每个数据库看起来完全不同。我们与他们的数据库同步,因此数据
我是 backbone 的新手。但是当我研究模型实体时,我不明白一些事情。如果我们可以像 java 或 C# 这样的标准语言一样定义模型属性,那就太好了。有没有可能是这样的。所以我的想法是这样的: M
我想获取存储在可绘制的 xml 文件中的形状的颜色。 我来到了将 Drawable 存储在 Drawable 变量中的步骤,所以,现在我想获取形状的颜色(纯色标签)。 有什么建议吗? 最佳答案 Gra
实体是直接映射到我们的数据库(我们用于 Hibernate)的类。 在调用 DAO 之前,我们的服务类包含这些实体的业务逻辑。 我们还有命令对象,它们是与特定 View 相关的 POJO。有人告诉我实
在我的应用程序中,我需要显示不同存储过程返回的记录列表。每个存储过程返回不同类型的记录(即列数和列类型不同)。 我最初的想法是为每种类型的记录创建一个类,并创建一个函数来执行相应的存储过程并返回 Li
我是一名优秀的程序员,十分优秀!