Tagged Questions

0
votes
1answer
25 views

How to query Anonymous Type collection?

How do you query a collection which is populated/created with select new? I have this BindingSource: this.bindingSource.DataSource = from row in db.Table select new { name = …
3
votes
2answers
48 views

Iterate through IQueryable of no specific type?

So I have this LINQ query that ends in a custom select kinda like this: select new { this1 = table.this1, this2 = othertable.this2 } The call to that query from the Controller looks something like …
1
vote
2answers
46 views

Anonymous collection initializer for a dictionary

Is it possible to implicitly declare next Dictionary<HyperLink, Anonymous>: { urlA, new { Text = "TextA", Url = "UrlA" } }, { urlB, new { Text = "TextB", Url = "UrlB" } } so I could use it …
0
votes
1answer
15 views

Silverlight security: giving a permission to access anonymous classes to a class library

I'm porting an existing class library to Silverlight. I used lambda expression compilation a lot and now I'm experiencing security problems because of it. In particular, if an anonymous class from a …
0
votes
3answers
50 views

Entity Framework: How to partially populate an Entity

When creating a query with EF, Normally we will create an anonymous type in order to limit the number of columns returned. But anonymous type cannot be returned or used as a parameter to a method …
1
vote
1answer
45 views

Problems with Linq using anonymous type

Why did the anonymous type property "Points" still have the value "0"? Public Class Test Public Sub New(ByVal _ID As Integer) ID = _ID End Sub Public ID As Integer End Class Dim …
0
votes
2answers
48 views

When selecting an anonymous type with LINQ from EF, is there no way to run a method on an object as you select it?

Let's say I have a method: bool myMethod(int a) { //return a bool } So let's say I the following // assume a has prop1 and prop2 both ints var mySelection = from a in myContainer …
3
votes
5answers
110 views

Determining whether a Type is an Anonymous Type

In C# 3.0, is it possible to determine whether an instance of Type represents an Anonymous Type?
2
votes
7answers
103 views

Dynamically set the property name of a C# anonymous type

Is there any way to dynamically set the property name of an anonymous type? Normally we'd do like this: var anon = new { name = "Kayes" }; Now I'd like to set the name (or identifier) of the …
0
votes
2answers
112 views

.net 3.5 anonymous foreach

I'm trying to loop through the results of a function that is returning an anonymous object of results. public static object getLogoNav() { XDocument loaded = …
0
votes
3answers
88 views

A simple and succinct definiton and explanation of anonymous types in C#?

I have no clue what an "anonymous type" is in C# nor how it is used. Can somone give me a good description of it and it's use? [Note: i really know what it is and how to use it but thought i'd ask …
1
vote
3answers
64 views

Is there a Linq operation to determine whether there are items in a collection who have the same values for a pair of properties?

C#: I have a collection of objects . T has 2 properties. Property A and Property B. The rule that this collection needs to adhere to is that the combination of values for A and B must be unique within …
1
vote
5answers
103 views

How do I get values from SelectedItem in ComboBox with Linq and C# 3.5

I am really missing something with anonymous types, because I can't figure out what to do with the Combobox.SelectedItem property. Here's the code that populates the combobox, and it works just fine …
4
votes
2answers
172 views

A dictionary where value is an anonymous type in C#

Is it possible in C# 3.net to create a System.Collections.Generic.Dictionary<TKey, TValue> where TKey is unconditioned class and TValue - an anonymous class with a number of properties, for …
0
votes
2answers
92 views

Why can’t new[] {AnonymousType, AnonymousType} be casted to IEnumerable?

Hi, I have an array of an anonymous type declared as: var list = new[] { new {Name = "A", Age = 10}, new {Name = "B", Age = 15} } Now list inherits from type Array, which implements …

1 2 3 4 5 7 next
15 30 50 per page