Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
6answers
1k views

LINQ Partition List into Lists of 8 members

How would one take a List (using LINQ) and break it into a List of Lists partitioning the original list on every 8th entry? I imagine something like this would involve Skip and/or Take, but I'm still ...
4
votes
3answers
2k views

Taking screenshot of Android OpenGL

I'm fighting from some time with taking a screenshot of Android OpenGL. The code I found is as follows: nt size = width * height; ByteBuffer buf = ByteBuffer.allocateDirect(size * 4); ...
3
votes
2answers
173 views

I have some problems with LINQ expression, OrderBy(), Skip(), Take() works incorrect

I have LINQ expression like var a = ctx.EntitySet .OrderByDescending(t => t.Property) .Skip(pageIndex * size) .Take(size); OrderBy() should call before Skip() and ...
3
votes
1answer
170 views

Array.Copy vs Skip and Take in c#

I was browsing this question and some similar ones: C# arrays , Getting a sub-array from an existing array Many places I read answers like this: C# arrays , Getting a sub-array from an existing ...
3
votes
3answers
164 views

Bug ? Seq.take 10 works well , Seq.take 100 doesn't work

let a = [1;2;3;] for i in (a |> Seq.take 10) do Console.WriteLine(i) for i in (a |> Seq.take 100) do Console.WriteLine(i) first line works well but second line gives error : The input ...
2
votes
3answers
173 views

RavenDB OrderByDescending and Take - Incorrect Results

This query was working for me until recently. I now have 135 InstallationSummary documents in my RavenDB. Instead of getting the most recent by start time, it's mostly working, but the last couple, ...
2
votes
2answers
101 views

Is it possible to combine rake task and bundle install into one command?

I have several rake tasks combined into one rake command. Just wondering is it possible to have one command run the "bundle install" within a rake task ? Or other way around ? So when I deploy my ...
2
votes
3answers
197 views

how to `.Take()` on a string and get a string at the end?

LINQ to Objects supports queries on string objects but when I use code such as below: string SomeText = "this is some text in a string"; return SomeText.Take(6).ToString(); All I get is: ...
2
votes
1answer
257 views

.Take(5) returns a count of 0 on an ObservableCollection

I'm trying to use LINQ to return the top 5 ping results from an ObservableCollection<PingReply> but the resulting IEnumerable has a count of 0. Can anyone explain why the lastFive object in the ...
2
votes
2answers
416 views

How do I truncate a list in C#?

I know in python you can do something like myList[1:20] but is there anything similar to C#? Thanks!
1
vote
2answers
218 views

Issues takeing picture with Android (Vertical Camera | Portrait)

With the following code shows a preview of the camera vertically and it's works.. BUT!! I get a photo in landscape! :( How I can build it vertically? I've the preview view in vertical, but I can't ...
1
vote
1answer
140 views

Linq + SQLite + Take() == Problem

I'm using System.Data.SQLite to access a SQLite database via c#/linq. I had no problems until I tried to use the Take()/Skip() functionality which caused an exception. The error message in case of ...
1
vote
2answers
136 views

Implementing take with F# by translating ML's equivalent

I'd like to translate this ML code into F#. fun take ([], i) = [] | take (x::xs, i) = if i > 0 then x::take(xs, i-1) else []; I tried this one let rec take n ...
1
vote
2answers
130 views

F# take items from a sequence

Im trying to learn F# What I would like to do is download a webpage, split it into a sequence then find the index of an item and take the next 3 items after it. Heres the code -- can someone show ...
1
vote
3answers
78 views

How much is performance improved when using LIMIT in a SQL sentence?

Let's suppose I have a table in my database with 1.000.000 records. If I execute: SELECT * FROM [Table] LIMIT 1000 Will this query take the same time as if I have that table with 1000 records and ...
1
vote
3answers
1k views

LINQ to SQL group by with take

I have a table that looks like this: Id GroupId Value and it has about 100 rows How can I return the top 10 rows for value but with no duplicating GroupId?
1
vote
1answer
2k views

C# Custom Dictionary Take - Convert Back From IEnumerable

Scenario Having already read a post on this on the same site, which didn't work, I'm feeling a bit stumped but I'm sure I've done this before. I have a Dictionary. I want to take the first 200 ...
0
votes
1answer
112 views

Linq DataTable and Take Method

I have the following use of Linq from a datatable: var query = dt.AsEnumerable(); query = dt.AsEnumerable().Where(log => log.Field<byte>("Day") == day).Take(10); The following error: ...
0
votes
0answers
36 views

Android: exception before select image from gallery twice

first, sorry for my English, it's not very good. I'm trying to select photo from gallery. All it's ok in this step. When I select the photo, on ActiviyResult get the Uri of the image and set an ...
0
votes
2answers
29 views

Using the Take Method on my model Substitute Variable

Basically I want to have a way to select the number in my foreach(var sheet in Model.Sheets.Take(100)) { ... } I would like the user to be able to specify this value and reload the page using the ...
0
votes
2answers
179 views

How to return datatable using Take() using C#

I have a function that returns a datatable, I added a code that will sort the datatable using dataview and should return Top 10 rows from a sorted dataview. DataView dvDt = dtData.DefaultView; ...
0
votes
1answer
295 views

Entity framework joins

I'm using the entity framework 4.0 and I'm having some issues with the syntax of my query. I'm trying to join 2 tables and pass a parameter to find the value at the same time.I would like find all of ...
0
votes
2answers
142 views

GroupBy then Take in LINQ to Entities?

Let's say I have the following items: ID Category Name 1 Fruit Banana 2 Car Mescedes 3 Fruit Blackberry 4 Fruit Mango 5 ...
0
votes
1answer
255 views

Why Skip and Take does not work when passing through a method?

Suppose following codes: IEnumerable<MyClass> MakeQuery() { var query = from m in session.Linq<MyClass>() select m; return query; } List<MyClass> m1() { return ...
0
votes
1answer
39 views

Does anyone know why Take() isn't working here

i have the following code using Nhibernate.Linq var apps = Session.Linq<History>().OrderByDescending(r => r.LastUpdated).Take(50); Console.Write(apps.Count()); the count returns 1000 ...
-2
votes
1answer
427 views

custom camera zoom Functionality IPhone Take Photo

I am successfully able to Make custom Zoom using Slider in my Custom Camera view using following code imagePickerController.cameraViewTransform = CGAffineTransformScale(initialTransform, ...