我有一个ASP.NET页面,它将列表视图绑定到IQueryable
:
<asp:ListView ID="productList" runat="server"
DataKeyNames="ProductID" GroupItemCount="6"
ItemType="products.Models.Product" SelectMethod="GetProducts">
<EmptyDataTemplate>
<div>
Sorry, no products available
</div>
</EmptyDataTemplate>
<GroupTemplate>
<ul id="da-thumbs" class="da-thumbs">
<div id="itemPlaceholderContainer" runat="server" class="text-center">
<div id="itemPlaceholder" runat="server"></div>
</div>
</ul>
</GroupTemplate>
<ItemTemplate>
<li>
<img src='/products/Catalog/Images/Thumbs/<%#:Item.ImagePath%>' class="img-responsive"/>
<div>
<span class="hidden-xs">Short Description</span>
<span class="spacer visible-xs"></span>
<a href="<%#: GetRouteUrl("ProductByNameRoute", new {productName = Item.ProductName}) %>" class="btn btn-success btn-block align-mid">View Details</a>
<a href="<%#:Item.ShortURL %>" class="btn btn-success btn-block align-mid"><%#:Item.DownloadText%></a>
</div>
</li>
</ItemTemplate>
<LayoutTemplate>
<div class="row">
<asp:PlaceHolder ID="groupPlaceholderContainer" runat="server">
<div id="groupPlaceholder" runat="server"></div>
</asp:PlaceHolder>
</div>
</LayoutTemplate>
</asp:ListView>
<asp:DataPager ID="it" runat="server" PagedControlID="productList" PageSize="6" class="btn-group pager-buttons pagination pagination-large">
<Fields>
<asp:NextPreviousPagerField ShowLastPageButton="False" ShowNextPageButton="False" ButtonType="Button" ButtonCssClass="btn" RenderNonBreakingSpacesBetweenControls="false" />
<asp:NumericPagerField ButtonType="Button" RenderNonBreakingSpacesBetweenControls="false" NumericButtonCssClass="btn" CurrentPageLabelCssClass="btn disabled" NextPreviousButtonCssClass="btn" />
<asp:NextPreviousPagerField ShowFirstPageButton="False" ShowPreviousPageButton="False" ButtonType="Button" ButtonCssClass="btn" RenderNonBreakingSpacesBetweenControls="false" />
</Fields>
</asp:DataPager>
GetProducts()
定义如下:
public IQueryable<Product> GetProducts(
[QueryString("id")] int? categoryId,
[RouteData] string categoryName)
{
var _db = new products.Models.ProductContext();
IQueryable<Product> query = _db.Products;
if (categoryId.HasValue && categoryId > 0)
{
query = query.Where(p => p.CategoryID == categoryId);
}
if (!String.IsNullOrEmpty(categoryName))
{
query = query.Where(p =>
String.Compare(p.Category.CategoryName,
categoryName) == 0);
}
var random = new Random();
query = query.OrderBy(product => random.Next()).Where (p => p.Active == 1);
return query;
}
问题是Random()
在这里不起作用。当我运行我的应用程序时,我收到错误
LINQ to Entities无法识别方法'Int32 Next()'方法,并且此方法无法转换为商店表达式。
可能一种解决方案是将其更改为IEnumerable
,但我需要IQueryable
进行分页。
更新:使用Taher的解决方案后,这是我得到的内部查询:
{SELECT
[Project1].[ProductID] AS [ProductID],
[Project1].[ProductName] AS [ProductName],
[Project1].[Description] AS [Description],
[Project1].[ImagePath] AS [ImagePath],
[Project1].[DownloadText] AS [DownloadText],
[Project1].[DownloadURL] AS [DownloadURL],
[Project1].[ShortURL] AS [ShortURL],
[Project1].[UnitPrice] AS [UnitPrice],
[Project1].[CategoryID] AS [CategoryID],
[Project1].[Active] AS [Active],
[Project1].[ShortDescription] AS [ShortDescription],
[Project1].[Priority] AS [Priority]
FROM ( SELECT
RAND() AS [C1],
[Extent1].[ProductID] AS [ProductID],
[Extent1].[ProductName] AS [ProductName],
[Extent1].[Description] AS [Description],
[Extent1].[ImagePath] AS [ImagePath],
[Extent1].[DownloadText] AS [DownloadText],
[Extent1].[DownloadURL] AS [DownloadURL],
[Extent1].[ShortURL] AS [ShortURL],
[Extent1].[UnitPrice] AS [UnitPrice],
[Extent1].[CategoryID] AS [CategoryID],
[Extent1].[Active] AS [Active],
[Extent1].[ShortDescription] AS [ShortDescription],
[Extent1].[Priority] AS [Priority]
FROM [dbo].[Products] AS [Extent1]
WHERE 1 = [Extent1].[Active]
) AS [Project1]
ORDER BY [Project1].[C1] ASC}
更新:这是使用Taher和JCL建议的修改后的代码:
if (!String.IsNullOrEmpty(categoryName))
{
Session["rand"] = null;
query = query.Where(p =>
String.Compare(p.Category.CategoryName,
categoryName) == 0);
}
var seed = 0;
if (Session["rand"] == null)
{
seed = (int)DateTime.Now.Ticks % 9395713;//a random number
Session["rand"] = seed;
}
var readSeed = (int)Session["rand"];
query = query
.OrderBy(product => SqlFunctions.Rand(product.ProductID * readSeed % 577317));
return query;
答案 0 :(得分:4)
EF有一类支持的函数称为SqlFunctions
。您可以使用此类的Rand
函数:
query = query.OrderBy(product => SqlFunctions.Rand()).Where (p => p.Active == 1);
不要忘记添加
using System.Data.Entity.Core.Objects;
这种方法的问题是from this source:
单个查询中RAND()的重复调用将产生相同的值。
我认为没有任何解决方法。解决方案是在原始SQL命令中使用`Newid(),我认为这对你没用,或者加载查询数据,然后将内存中的行洗牌。
我尝试了这项工作,似乎有效:
var seed = (int)DateTime.Now.Ticks % 9395713;//a random number
query = query
.OrderBy(product =>SqlFunctions.Rand(product.ProductId * seed % 577317))
.Where (p => p.Active == 1);
这个技巧将强制sql server为每一行生成一个新的随机值,因为每行上的ProductId
更改会更改Rand
种子,这会强制sql server生成新的随机值
您可以探索seed
变量的不同值以获得更好的结果。
修改强>
为了获得每个类别的种子,您可以在Application
中创建种子缓存,或者只是创建(类别,种子)对的静态字典,如下所示:
MVC
,则在控制器中;如果您使用ASP.NET
,则使用页面类:
static Dictionary<string, int> categorySeeds = new Dictionary<string, int>();
在动作或方法中:
int seed = 0;
if(categorySeeds.ContainsKey(categoryName))
{
seed = categorySeeds[categoryName];
}
else
{
seed = (int)DateTime.Now.Ticks % 9395713;//a random number
categorySeeds.Add(categoryName, seed);
}
//rest of the code
答案 1 :(得分:1)
老实说,最好的方法是在SQL Server中使用存储过程将随机种子作为参数传递(并在需要再次随机播放时在代码中更改它)。
否则,除非您将相同的种子传递给随机,否则分页将无效(并且似乎是一项要求),因为每次刷新查询时,您都会得到不同的顺序。
如果你不能将所有数据都存储在内存中(并且在内存中的对象上,而不是在EF上),那么最好的解决方案就是直接在SQL Server中执行它,并且只需要从结果中读取EF存储过程。
或,如果修改你的实体是合理的,那么你的实体上有一个整数字段,并用随机值填充这个实体(如果直接通过SQL完成,应该很快,因为EF就我而言知道不做批量更新)每次你想要洗牌,并按顺序排序(这在多用户环境中可能很棘手,但可以完成,你不应该关心几个不同的用户是否相同排序,你呢?)。
这些是在服务器上以真正的伪随机/混洗顺序进行分页工作的唯一方法。
同样,如果表不大(并且不会)并且你可以只将整个表(没有分页)和页面下载到内存中的集合,那么这很容易。
答案 2 :(得分:-1)
我在非常相似的问题How to efficiently retrieve a list of random elements from an IQueryable
中找到了这本杰作users.OrderBy(_ => Guid.NewGuid()).Take(3)
这将从用户表中检索前3个元素,同时按每次不同的值对它们进行排序。
与AD.Net的答案相比。好吧,您需要随机生成的用户ID列表。.它不建议这样做的方法
答案 3 :(得分:-2)
将您的代码添加到此
var random = new Random();
var randomNumber=random.Next();
query = query.OrderBy(product => randomNumber).Where (p => p.Active == 1);