0
votes
3answers
33 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 param …
1
vote
1answer
36 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 Int …
0
votes
2answers
37 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 myContain …
1
vote
6answers
568 views
.net Databinding - Referencing Anonymous Type Properties
I have bound an ASP.net GridView to a collection of anonymous types.
How can I reference one of the properties of the anonymous types in the RowDataBound event handler?
I am alre …
1
vote
3answers
62 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 m …
3
votes
5answers
101 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?
4
votes
7answers
647 views
A generic list of anonymous class
In C# 3.0 you can create anonymous class with the following syntax
var o = new { Id = 1, Name = "Foo" };
Is there a way to add these anonymous class to a generic list?
Example …
2
votes
7answers
86 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 iden …
1
vote
4answers
93 views
Creating a dynamic anonymous types vairables
Hello,
I would like to ask if i can create a anonymous type variable and later on i can add more Properties? like
var x = new { Name = "Ahmed" }; and want to add Age to it?
how i c …
0
votes
2answers
102 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 = XDocument.Load(Http …
0
votes
3answers
85 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 bu …
1
vote
5answers
88 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, an …
9
votes
8answers
3k views
LINQ Select Distinct with Anonymous Types
So I have a collection of objects. The exact type isn't important. From it I want to extract all the unique pairs of a pair of particular properties, thusly:
myObjectCollection. …
3
votes
2answers
150 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 …
0
votes
2answers
88 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, wh …
