Anonymous types are data types which dynamically add a set of properties into a single object without having to first explicitly define a type

learn more… | top users | synonyms

0
votes
3answers
25 views

how to create an anonymous int array for the purpose of passing as a parameter

I need to create anonymous int array to be passed to a method. I don't want to declare a variable and then pass the variable because it makes code look crowded. This is what we can do for Integer ...
2
votes
0answers
16 views

How to Bind dropdown from anonymous class values

I want to populate a dropdown with values A,Band C.The below code works for create only,not for edit. ViewBag.UserType = new[] { new SelectListItem { Text = "A", Value = "1", Selected = false }, ...
0
votes
1answer
12 views

mvc3 assign anonymous types or workaround

I have a model that is used to modify a user's password and captures the date that the password has been changed. I am getting an error saying property or indexer anonymous type cannot be assigned to ...
5
votes
1answer
41 views

Is it safe to use GetHashCode to compare identical Anonymous types?

Given two identical anonymous type objects: {msg:"hello"} //anonType1 {msg:"hello"} //anonType2 And assume that they haven't resolved to the same type (e.g. they might be defined in different ...
0
votes
3answers
50 views

LINQ query with GROUP BY and Count(*) into Anonymous Type

I'm trying to use a LINQ query to determine how many of each particular object type I have and record those values into an anonymous type. Let's say I have some data that looks like this (there are ...
0
votes
2answers
23 views

Getting characters from indices in list of strings into one list of characters

The title sounds like nonsense, but the example below will hopefully help. Trying to write a big LINQ statement where, given a list of strings and a list of integers, it can gather a list of all of ...
1
vote
1answer
26 views

Is there a way to put attributes on anonymous type properties?

Is there a way you can put attributes on properties in an anonymous type? Or the anonymous type itself? If not when you create it, perhaps afterwards via reflection? As a potential use scenario, let ...
0
votes
2answers
31 views

Giving an alias to anonymous type property not working

I have 2 properties with the same name: List<CustomerWithCountry> customersList = CustomerEntity.LoadCustomersSubsetForCriteria(null, 0, 100, null) .Select(c => new { c.CODE, c.NAME, ...
1
vote
2answers
123 views

Cast List of Anonymous type to List of Dynamic Objects

Why can't I cast a List<AnonymousObject> to a List<dynamic>? I have this following code: var datasource = someList.Select(o => new { x = o.A, y = o.B }); dgvSomeGridView.DataSource = ...
1
vote
3answers
100 views

Complex anonymous objects to dynamic public properties

How do I make the complex structure of an anonymous object public inside a dynamic object? Anonymous objects are flagged as internal, so I'm looking for a creative way to work around this. // This ...
5
votes
2answers
58 views

LINQ anonymous type not giving the list I need

I'm in the process of doing a LINQ query of an object call Recipe that need to be ordered by it's score. In the beginning, I have a IEnumberable of type Recipe (already filtered with the search ...
0
votes
2answers
34 views

Anonymous function in php

Imagine (even if it's not good style) you have an array in which you are adding Arrays with some content. Maybe something like this: $result_array = array(); foreach( ... as $key => $value ) { ...
1
vote
1answer
43 views

Assign anonymous in IF-ELSE statements

Please consider this code : var Final = result.OrderBy(p => p.AreaCode).ThenBy(p => p.PCode).Skip(PageSize * (PageNo - 1)).Take(PageSize); if (PageSize == 0) { Final = ...
4
votes
2answers
92 views

VB.NET vs C#: Anonymous types and intellisense

How come when do this in C#... var x = new { Name = "aaa" }; ...I can get intellisense on .Name, but when I do this in VB.NET... Dim x = New With {.Name = "aaa"} ...I get no intellisene on .Name?
0
votes
4answers
109 views

Effective linq contains with anonymous type

I have a collection of anonymous objects created like this: var srcCategories = srcSet.Categories.Select(c => new { ApplicationId = c.IsGLobal ? (long?)null : c.App.Id, c.Name }); Note ...
5
votes
4answers
108 views

Is there a trick in creating a generic list of anonymous type?

Sometimes i need to use a Tuple, for example i have list of tanks and their target tanks (they chase after them or something like that ) : List<Tuple<Tank,Tank>> mylist = new ...
1
vote
1answer
37 views

Why does New <Type> With {} work but New With {} doesn't?

I've always used New With {} with no issues. Why is this different? Razor VB.NET code Using Ajax.BeginForm(New AjaxOptions With {.HttpMethod = "Post"}) @* no problem *@ End Using Using ...
5
votes
2answers
204 views

Unable to create a constant value of type 'Anonymous type'

I have two linq queries. I want to use result of one query in another query. var t2s = (from temp3 in _ent.Products where temp3.Row_Num == 2 select new { ...
5
votes
1answer
487 views

C#.NET MVC 4 with SQL Server: Entity Framework 5 Method Query Roll Up

I'm trying to get a summary of confirmed/finalized purchases by querying a SaleConfirmation table, but I'm having a lot of difficulty with the method syntax query. Database Table Here is the ...
2
votes
1answer
77 views

How to avoid “Duplicate type name within an assembly” while reusing ScriptEngine with anonymouse type?

I'm working with scripting rules engine based on roslyn-ctp that will process IEnumerable<T> and returns results as IEnumerable<T>. To avoid creating of ScriptEngine, configuring and ...
0
votes
2answers
147 views

How to convert anonymous type to IListSource, IEnumerable, or IDataSource

I create the following anonymous type: int group_id = 0; int dep_code = 0; int dep_year = 0; string dep_name = string.Empty; int boss_num = 0; string boss_name = string.Empty; var list ...
1
vote
2answers
75 views

Anonymous method is using generics values as perameter

i am stuck with an java tradition of using anonymous methods, I am using third party library which have a generic interface which takes table_name as its generic types like ...
0
votes
1answer
121 views

Linq to Entities Distinct on Column without Anonymous Type

I am using Entity Framework 5.0 and I wish to return a list of objects, however, I want to perform a DISTINCT on one of the properties on each object within the list. I know there are a few questions ...
3
votes
1answer
42 views

Accessing a member of an anonymous type during construction

Is there any way to access a member of an anonymous type during its construction? For example enumerable.select(i => new { a = CalculateValue(i.something), // <--Expensive Call b ...
5
votes
3answers
200 views

How return custom anonymous type?

How do I return an anonymous type which depends on the fields parameter in which properties which have to be included in anonymous type are listed? Task entity has more than 20 properties, and ...
1
vote
2answers
143 views

Interchange Item position of anonymous type

I have populated a sorted list of anonymous type using the following code. var list = service.GetTenantsOverview() .TenantsOverview .Cast<TenantOverview>() ...
2
votes
1answer
67 views

Passing anonymous types to controller

I've already achieved this way: MVC Controller -> Client Inside the controller: public object GetJsonNetResult() { return JsonConvert.SerializeObject(new { Name = "Alice", ...
3
votes
1answer
162 views

Why does RazorEngine compile templates with anonymously-typed models dynamically?

I have noticed that RazorEngine.Compile() seems to treat anonymous types differently from other types. For example, consider the following code: public static void Main() { try { var model = ...
2
votes
1answer
87 views

What do permit anonymous parameterless delegate types to differ?

Having read in article "Anonymous Methods" (as part of the articles series "Delegates and Lambda Expressions in C# 3.0") the phrase: "Advanced Topic: Parameterless Anonymous Methods ... ...
0
votes
2answers
40 views

How to access property of anonymous type?

Considering this IronPython script def SensorEvent(d): print d print d.Message ... how do I access properties of d? First line of the SensorEvent method successfully prints { Message ...
1
vote
1answer
63 views

Create anonymous type with mutable fields? [duplicate]

I can create an anonymous class easily using the below. However I can't write to it. Is there a way I can write to some sort of unnamed class? var test = new { a = 5, b = "sz" }; test.a++;
1
vote
1answer
31 views

Selecting nth values in anonymous types

I have a collection of HTML items after running an XPATH expression against an instance of HtmlDocument (HTMLAgilityPack). The returning collection is: The {h3} tag should be name of ...
0
votes
0answers
31 views

Anonymous Type based on list of strings

i have a type, let's say class MyType { string A; string B; int C; DateTime D;} I have a list of strings, let's say List<string> columns = new List<string>(){ "A", "C", "D"}; I ...
5
votes
3answers
162 views

List of anonymous types?

I need to create pairs / triples of something and store it somewhere. How can I do it? I tried: for (int i = 0; i < 100; i++) { var item=new { a=i , b="lala" ,c=4.5m}; //anonymous type } ...
0
votes
1answer
38 views

Alternative to CONTAINS method?

Giving the string below with "server type" separated by comma: string serverTypeList = "DB, IIS, CMDB"; //server.Type in the loop below should have value of "MDB" My problem is that in this ...
1
vote
3answers
113 views

Trouble with anonymous method

I have a method that excepts an IEnumerable<T> and a lambda expression that describes the field to be used to compare a linq-to-sql collection to an array. The method returns the matching ...
0
votes
0answers
81 views

Generics and Anonymous types

I have a function, public static IPagedResponse<T> GetPagedResponse<T, TAnon>( this IQueryable<TAnon> query, QueryableRequestMessage request) where T : class { ...
3
votes
1answer
432 views

Automapper DynamicMap failing to map Lists of anonymous types

I have the following snippet of code. var files = query.ToList(); var testFile = Mapper.DynamicMap<EftFileDto>(files.First()); var filesDto = ...
1
vote
2answers
110 views

Add an anonymous class of object to an anonymous list

I've declare a anonymous list like this, and it contain list of contact also var ContactGroup = new[] { new { ContactGroupKey = 0, ContactGroupTLK = 0, Desc = "", Contacts=new List<object>() ...
0
votes
0answers
105 views

Is it possible to use anonymous types in WPF XAML?

I am tweaking the code from sample: 24.129.21. Master Detail Binding from C# / CSharp Tutorial » Windows Presentation Foundation » Binding) And after excluding Skills class, with ...
2
votes
2answers
233 views

C# Anonymous type foreach loop, a better way?

I have this simple foreach loop of an anonymous type and I'm wondering if there is a way to make it more efficient. If it loops through 155 items, it takes about 20 seconds to complete. I've omitted ...
12
votes
2answers
162 views

How do I declare “Key” fields in C# anonymous types?

In VB.NET I'm used to doing things like this when creating anonymous types (VB.NET anonymous types include the notion of Key Fields): Dim prod1 = New With { Key .Name = "paperclips", Key ...
0
votes
1answer
138 views

LINQ creating anonymous type array error

I am trying to create a array of anonymous type from the result set using LINQ. my code is var data = (from s in sortedStudents select new { //id = ...
2
votes
1answer
80 views

sending anonymous type to IronPython from C# throws MissingMemberException

The below code throws a 'MissingMemberException' ScriptEngine engine = Python.CreateEngine(); ScriptRuntime runtime = engine.Runtime; ScriptScope scope = runtime.CreateScope(); string code = ...
1
vote
5answers
65 views

Is it possible to modify or remove an anonymous type from an object in c#?

I have a piece of code like below: var selected = “A”; bool isSelected = selected == "A" || selected == "C" ? true : false; var codeLists = new { displayProperty1 = isSelected ...
1
vote
2answers
107 views

Can I use an anonymous type in a List<T> instead of a helper class?

I need a list with some objects for calculation. my current code looks like this private class HelperClass { public DateTime TheDate {get;set;} public TimeSpan TheDuration {get;set;} ...
1
vote
2answers
190 views

Anonymous variables, passing by reference, initializer lists

So I'm just getting caught up in some nuisances of C++. Specifically, passing anonymous variables by reference for use in an initializer list for a class in C++. Consider the following code; class A ...
4
votes
1answer
164 views

Why anonymous type are immutable in c#? [duplicate]

Possible Duplicate: Why are the properties of anonymous types in C# read-only? I wrote something like this, var suspense = new { Name = "Android", Market = string.Empty }; ...
2
votes
3answers
413 views

Cannot assign null to anonymous property of type array

I have any array of (Pilot) objects with a (Hanger) property, which may be null, which itself has a (List<Plane>) property. For testing purposes, I want to simplify and 'flatten' this to an ...
0
votes
0answers
19 views

RedirectToAction without an Anonymous type

It is easy to redirect to an action with Asp.Net MVC; you just have to call RedirectToAction with the action name. This is what I do in a lot of places: return base.RedirectToAction("Edit", new { id ...

1 2 3 4 5 11