0
votes
1answer
76 views

Which type of collection is best? [closed]

Wording in my previous question prevented people from answering it. Regardless to say, I can do what I need to do. My ultimate concern is which option is optimal? I am traversing the entire Active ...
0
votes
1answer
32 views

SQL Server Collation for Greek, chinese, japanese

I've got this multilanguage website that supports greek, chinese and japanese. When I insert values into the database I get question marks all over. My columns are in ntext and my current collation ...
1
vote
2answers
61 views

ArgumentException not found in Dictionary ContainsKey check

I have code like this: if (!likeDict.ContainsKey(s)) { likeDict.Add(s, s); } And I keep getting an error that an item with the same key has already been added. I thought ContainsKey is the ...
0
votes
1answer
11 views

Passing collection name dynamically

Can any one suggest for a simple but tricky query. I have a function like public object GetPropertyValue(object obj_, string property_) { return HttpContext.Current.Request.Headers[property_]; ...
0
votes
2answers
56 views

Why are Pair and Triplet class System.Web.UI (can I use them in Console app)?

Bumped into ancient .NET Pair Class and Triplet Class Why are they in System.Web.UI namespace? Can I use them in desktop (Windows Forms) or console app? Update: There was a similar question What ...
0
votes
3answers
119 views

asp.net Dictionary<string,string> update item based on key value

I have a Dictionary object: protected Dictionary<string,string> myDict; I would like to be able to search the dictionary via a key and update the value of that key/value pair. if ...
0
votes
1answer
372 views

MVC4 - binding nested collection

I have two classes: public class Exercise { public Guid Id {get;set;} public string Name {get;set;} public List<ExerciseItem> Items {get;set;} } public class ExerciseItem { public Guid ...
2
votes
1answer
65 views

Executing a method everytime an item is added to a collection

i want to execute a method each time an item is added to an DbSet. Is this possible without calling this method seperate each time?
0
votes
1answer
44 views

How to read Entire Web.Config file and put it in a collection?

Is it possible to read the entire contents of the web.config file and put it in some type of collection? appSettings (which in turns has other settings key/values) mailSettings (which in turns has ...
0
votes
3answers
87 views

Bind Collections To Gridview

protected void BindGV() { List<List<string>> list = new List<List<string>>() { new List<string>() ...
2
votes
1answer
31 views

Binding COllection to Gridview

List<Person> pList = new List<Person>(); pList.Add(new Person(1, "John", "", "Shields", 29, 'M')); pList.Add(new Person(2, "Mary", "Matthew", "Jacobs", 35, 'F')); ...
0
votes
1answer
45 views

Adding a KeyValuePair to the front of a Dictionary

I have a dictionary that stores data for a dropdown and I want to add an all option but I want this to be the first entry in the collection so it will be in the correct order when I build my HTML. ...
1
vote
4answers
150 views

Remove item from List Collection not removing

I am working on a collection. I need to remove one item from a collection and use the filtered/removed collection. Here is my code public class Emp{ public int Id{get;set;} public string ...
1
vote
2answers
58 views

How can I change the Comparer of ASP.NET's Request.Form collection?

ASP.NET's Request.Form["key"] collection uses a case-insensitive Comparer. This is screwing me up because I've got form POST data that looks like: ...
1
vote
2answers
49 views

Trouble ordering a collection of objects by a numeric string value property

So I have a class that contains a property called myNumber. It looks like this: public class MyThing { public int name{ get; set; } public string myNumber{ get; set; } } The value ...
1
vote
2answers
138 views

Duplicate key handling in collections

I have a microsoft visual basic collection (in the namespace Microsoft.VisualBasic) - which uses the Microsoft.VisualBasic.Dll library. private Collection myCollection; When i add values to it, I ...
3
votes
1answer
130 views

Getting “Collection was modified ” error even though I'm modifying a different collection

Ok, I know that I'm not allowed to modify the collection I'm currently traversing but look at the code below and you'll witness that I'm not even touching the collection the enumeration is performed ...
1
vote
1answer
108 views

How to retrieve only an ASP.NET MVC3 Collection's Count without element properties

I am using ASP.NET MVC 3 to track hits on a set of stored links. I run into problems when displaying the hits' counts. I think this is because since I am using lazy loading, whenever I call ...
1
vote
1answer
38 views

what is a better choice to hold a range when being queried by linq

I need to save a set of ranges of integers so then I can query them using linq like below : int param = 10; var matched = from item in items where param >= item.min && param ...
0
votes
6answers
160 views

List<T> moving to the next element

I searched SO and found some posts, but could not get them to work. Question: How would I loop to the next item in my List Collection (custLoginHist[1] etc)? ...
1
vote
2answers
630 views

Using nested LINQ queries and collections of objects

I am using a two LINQ queries(nested) Here's what I want my query to achieve: In my inner query Retrieve a collection of UserLocation objects using two conditions In my outer query Retrieve a ...
0
votes
1answer
2k views

add a textBox in GridView and the textbox retrieves data from a collection not from a dataSource

I want to add a textBox in GridView knowing that the textbox retrieves data from a collection like ArrayList or List(OF ..) not from a dataSource (ASP.net)
1
vote
1answer
1k views

Get number of items in repeater during OnItemDataBound

I'm trying to get the number of items in a repeater whilst handling the OnItemDataBound event. What I'm trying to achieve it quite simple; I'm trying to hide a certain label on the last item within a ...
1
vote
0answers
133 views

How can I return a key-value pair from EF ExectureStoreQuery()?

I have a complex query that returns a number of int pairs (mykey and mykeytype) from a call to ExecuteStoreQuery: public class myPair { public int mykey {get;set;} public int mykeytype ...
0
votes
1answer
138 views

datagrid rows to save in collection and show on another page asp.net

I have grid in my page which have four columns with multiple rows Userid username stateid and statename which collection i should use to send data to another page using session my code is string[] ...
0
votes
2answers
837 views

populate dropdownlist from hashtable

I'm trying to fill a dropdownlist from a Hashtable, the HashTable keys & values pulled from database, private Hashtable myHashTable = new Hashtable(); using the following method: void ...
3
votes
6answers
755 views

Cache collection and filter it without modify original cached collection in ASP.NET

I want to cache a data collection in asp.net mvc and filter this collection without to changed the cached collection. Is it possible to do this? Because for now, when I get my cached collection I ...
-1
votes
1answer
299 views

NameValueCollection from Form.Post show FIELDS and VALUES

I need to grab all the FIELD and VALUES from a POST. I have the follow which only return the FIELDs but no Values. NameValueCollection authForm = Request.Form; String[] a = authForm.AllKeys; for (i ...
0
votes
2answers
34 views

Grouping the name in the manner of years and months from a list

i had created a class with two properties one of datetime datatype and other of string. public class name1 { public DateTime dob { get; set; } public string name { get; set; } } and then page load ...
3
votes
2answers
791 views

AutoMapper: Merging values of items in a collection from one instance to another

I am trying to figure out how to merge two complex object instances using AutoMapper. The parent object has a property which is a collection of child objects: public class Parent { public ...
1
vote
1answer
87 views

How to resolve a collection modified error when threading seems to involved or the cause?

This scenario involves: ASP.NET, Visual Studio 2010, SQL Server 2008 R0, and SubSonic 3.0.0.2 I have isolated this error to a situation where the collection is not being modified in any apparent way ...
0
votes
2answers
51 views

Howto someFunction(List<acceptDifferentTypesHere> list) { /*reflection stuff*/ }

I want to generate a DataTables out of Lists. so f.e. I got two lists List<typeA> listA = new List<typeA>(); List<typeB> listB = new List<typeB>(); how can I get a ...
3
votes
2answers
205 views

Querying objects from static List causing spikes on cpu usage on server

We have a feature similar to the Related questions on SO where we show related records when viewing a given record. The related records were being retrieved by calling the db every time the page was ...
0
votes
3answers
665 views

C# Collections for Distinct Data

I have a bunch of string data and I can loop through it one by one. What's a good collection (and how to implement it) so that I only get the distinct strings? The client I am doing this for doesn't ...
0
votes
1answer
2k views

Asp.net Formview with a gridview inside the Edit/InsertTemplate working example

I'm using a FormView to edit my business objects. I don't have any problem to edit/insert single properties. Some of the business objects have collection properties that I'd like edit/insert in ...
3
votes
1answer
940 views

How do I make a control with a child control collection in ASP.Net

I'm trying to develop a custom control for asp.net that will have the following markup: <bk:ControlMenu ID="cmTest" runat="server" Width="400px"> <Items> ...
2
votes
5answers
4k views

How can I use a List<> Collection as a Repeater Datasource in ASP.NET with C#

I have a list collection like below : using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace FileExplorer.Classes { public class NewAddedFiles { ...
0
votes
2answers
214 views

Fluent NHibernate HasMany collection not populating

I am having trouble setting up a Fluent NHibernate HasMany collection. I have set the code up as below and I'm calling it via Linq IQueryable. In SQL Profiler, I can see the correct SQL getting ...
0
votes
3answers
476 views

how to add dynamic items in a collection in javascript?

i want to add number of elements in a collection in javascript,as doing in following vb's code Dim myList As New List(Of String) Dim i As Integer For i = 0 To ...
3
votes
3answers
432 views

How to retain the value of a global variable List<object> after postbacks

I have looked at this question first: retain value after page refresh. But it seems like it doesn't work with collections because the ViewState only store one value. I need to use the collection ...
0
votes
2answers
45 views

Rework custom collection to use whatever object

I have some code I always use to make collections of my object. This code and be used like 10 times in some of my project with the object replaced. Is there any way I can create this as a function ...
0
votes
2answers
642 views

ASP.NET - How to save a List Collection to DB using Stored Procedure?

I have a List Collection: List<Person> people = new List<Person>(); Person p1 = new Person(); p1.FirstName = "Nikos"; p1.LastName = "Kantzelis"; p1.Email = ...
0
votes
1answer
181 views

asp.net custom resourceprovider using Dictionary / SortedList / SortedDictionary?

This question may have been asked in different formats, but for my current requirement can someone suggest which is the best.. In ASP.Net i have my own implementation of local & global resources, ...
0
votes
1answer
288 views

get data row in var

var a=from b in dc.Table1s select b; int High=60,Low=50,c=0; foreach(var item in a) { if(c>Low && c<High) { //do something } c++; } If you have 10,000 row of ...
0
votes
3answers
167 views

Removing duplicate collection strings in memory

I am working on a hypothetical question. One of them being that if there are duplicate string collections in memory, how would I get about removing the duplicates while maintaining the original order ...
0
votes
3answers
692 views

The OrderedDictionary is read only and cannot be modified

Q: When i try the following code : ((IOrderedDictionary)Session["keys"])[2] = objToUpdate.Note_title; ((IOrderedDictionary)Session["keys"])[3] = objToUpdate.Iscourse; It throws an exception: ...
1
vote
1answer
75 views

Simple question, retrieving an updated collection of nhibernate objects from the parent

I have a pretty easy question regarding nHibernate but I couldn't really find an answer on google. Let's say I have a mapped Member object that holds a 1:n foreign key to Mail objects. I would like ...
3
votes
1answer
217 views

Need help understanding .Net Collection behaviour for a TreeNodeCollection

I have a ASP.net page that contains a TreeView that is updated dynamically. I have encountered a problem using the TreeNodeCollection that I can not figure out the reasons behind. The following code ...
1
vote
6answers
146 views

Question about dealing with Arraylists in c#

I made a static function that returns me an ArrayList of objects: allThread =(ArrayList) AllQuestionsPresented.GetAllThreads(); Now the objects have properties that i want to get out. But I ...
0
votes
3answers
496 views

How can I populate a drop down list control Collection?

How can I populate a drop down list control (ASP.NET) from a SPListTemplateCollection (SharePoint 2007) ? SPWeb web = SPContext.Current.Web; ddlTemplateList = new DropDownList(); ...

1 2 3