0
votes
3answers
61 views
Iterating and creating new anonymous types dynamically
I have an anonymous type of this form:
new List<MyList>()
{
new Column { Name="blah", Width=100, Hidden=true },
new Column { Name="blah1", Width=60, Hidden=false }
}
How can I go …
1
vote
2answers
92 views
C# Anonymous Type
When I say Anonymous Type Declaration
var someType = new { Name = "Jon
Skeet", Age = 10 };
However the Keyword
var is implicitly typed
but when i print
…
0
votes
1answer
27 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 = …
0
votes
4answers
408 views
how to use foreach in linq
I have read in some blog some time ago (sorry for being vague) that i could use a linq like the following
var list = from c in xml
select new
{
foreach(XElement …
3
votes
2answers
52 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
48 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
19 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
59 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
47 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
50 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
…
1
vote
6answers
603 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 already aware of the way …
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 …
3
votes
5answers
112 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
721 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:
var o = new { Id …
2
votes
7answers
110 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 …
