1
vote
5answers
1k views
How to update and order by using ms sql
Hi,
Ideally I want to do this:
UPDATE TOP (10) messages SET status=10 WHERE status=0 ORDER BY priority DESC;
In English: I want to get the top 10 available (status=0) messages f …
0
votes
1answer
30 views
Using OrderBy with custom IComparer with SubSonic
I am trying to call OrderBy() using a custom IComparer on a SubSonic IQueryable like so:
IQueryable<FooObject> sortedFoos =
FooObject.All()
.OrderBy(f => f, new Fo …
1
vote
2answers
60 views
Can I Nest OrderBy in .NET?
This doesn't seem to work as I intend.
VB.NET:
Dim x = Model.Discussions.OrderByDescending(Function(d) d.Messages.OrderByDescending(Function(m) m.Sent).First.Sent)
For Each d As …
0
votes
2answers
55 views
Problem using OrderBy with the entity framework and ObjectContext.CreateQuery(T)
Hi,
I'm having troubles using this method:
public ObjectQuery<E> DoQuery(string columnName, int maximumRows, int startRowIndex)
{
var result = (ObjectQuery<E>)_c …
0
votes
1answer
24 views
Order by in mysql using second table
Hi,
I have two tables, one is a list os stores and attributes, the second is a list of allocationsa based on these attributes.
The attribute table (stores_metadata)
| key | store …
0
votes
2answers
18 views
Linq to Entities Include and Ordery By
I'm using the query below:
public IEnumerable<QUESTIONARIO_BASE> ListQuestionario()
{
var query = (from c in _entities.QUESTIONARIO_BASESet
…
0
votes
4answers
122 views
C# List<T> OrderBy always returning null…
Here's my setup.
public class ItemList : List<Item>
{
public void Load() {...}
public void Save() {...}
}
Load reads from an XML file to populate the ItemList
I then …
1
vote
2answers
41 views
How to use isnull type decision in linqdatasource orderby ?
I have a sql stored procedure that uses isnull in the order by clause to order items by the latest reply date, or if that is null, by the posting date:
Example:
ORDER BY isnull(rt …
0
votes
1answer
142 views
Reverse order of bars in a Flex BarChart
I'm trying to use a BarChart in Flex. I'd like it to order the bars according to the order of the ArrayCollection I fed it. i.e. data at index 0 should be the first bar on top. How …
1
vote
2answers
58 views
MSSQL: Does the Order By clause recalculate the value?
When I use a calculation or a subquery in my ORDER clause which is already in my SELECT clause, does SQL know to just order by that column? Or does it recalculate everything for ea …
2
votes
3answers
1k views
MS Sql: Conditional ORDER BY ASC/DESC Question
I want to to make to make the ordering in my query conditional so if it satisfiess the condition it should be ordered by descending
For instance:
SELECT * FROM Data ORDER BY Sor …
0
votes
0answers
24 views
DynamicLinq OrderBy in n:m relation table
Hi, there is any way to order a query by a many-to-many relation table column in linq? and in scottgu's DynamicLinq?
For example:
Products: p_id, p_name
Product_Order: p_id, o_i …
0
votes
3answers
672 views
Use own IComparer<T> with Linq OrderBy
I have a generic
List<MyClass>
where MyClass has a property "InvoiceNumber" which contains values like:
200906/1
200906/2
..
200906/10
200906/11
200906/12
My list is bou …
0
votes
4answers
165 views
How to ORDER BY a SUM() in MySQL?
I have a table: "ID name c_counts f_counts "
and I want to order all the record by sum(c_counts+f_counts)
but this doesn't work:
SELECT * FROM table ORDER BY sum(c_counts+f_count …
1
vote
2answers
63 views
CASE in ORDER BY few columns
Using a case-then block, I need to choose how to order my SQL 2008 query, by [status] ASC, [date] DESC or just [date] DESC.
I know only how to use one column:
SELECT *
FROM table …
