Tagged Questions

0
votes
0answers
33 views

NHibernate IDictionary mapping with link table

I am a newbie to NHibernate and trying to create a XML mapping for this scenario: public class Catalog { public virtual Guid ID { get; set; } public virtual string Name { …
1
vote
1answer
47 views

Binding to indexed property with String key

Say I wanna bind to dictionary that TKey is string with XAML: <Label DataContext="{MyDictionary}" Content="{Binding Item("OK")}" /> Doesn't work. How should I do it? I a …
0
votes
2answers
100 views

<Map> = IDictionary.

I have 3 entities: class User {id,name...} class UserUrl {id,user_id,url,url_type_id} class UrlType {id,name} My mapping: <class name="User" table="Users" lazy="false"> &nbs …
0
votes
2answers
173 views

IDictionary, Dictionary

I have: IDictionary<string, IDictionary<string, IList<long>>> OldDic1; (just for illustration purposes, it is instantiated and has values - somewhere else) Wh …
2
votes
3answers
305 views

How do I alter the contents of IDictionary using LINQ (C# 3.0)

How do I alter the contents of an IDictionary using C# 3.0 (Linq, Linq extensions) ? var enumerable = new int [] { 1, 2}; var dictionary = enumerable.ToDictionary(a=>a,a=>0) …
2
votes
5answers
263 views

Purpose of IDictionary interface

What is the need of IDictionary interface. How can IDictionary interface be initialized. After all it is just an interface. The following code snippet is from msdn. I could not und …
1
vote
2answers
299 views

Getting values of a generic IDictionary using reflection

I have an instance that implements IDictionary<T, K>, I don't know T and K at compiletime, and want to get all elements from it. I don't want to use IEnumerable for some reas …
0
votes
1answer
269 views

NHibernate 2.0: Cfg.Configuration.SetProperties Issue with IDictionary

Hello I have a problem with: NHibernate.Cfg.Configuration.SetProperties() Not accepting the IDictionary: NHibernateConfigHandler I get the messages: Error 30 The best ove …
0
votes
1answer
62 views

Error when calling the service in async mode

Stackoverflow is definetly the fastest forum so after posting this question in the WCF forum I decided to come here. I have a wcf service which returns a dictionary (IDictionary) …
1
vote
3answers
238 views

COM Interop IDictionary - How to retrieve a value in C#?

using: VS2008, C# I have a COM dll I need to use in a .NET project. In there I have a class with a method that returns an IDictionary object. IDictionary is defined in the COM dll …
2
votes
6answers
2k views

Convert IDictionary<string, string> keys to lowercase (C#)

Hi, I've got a Method that gets a IDictionary as a parameter. Now I want to provide a method that retrieves the value from this dictionary, but it should be case-invariant. So my …
1
vote
4answers
464 views

Removing Items From IDictionary With Recursion

Anybody have a slicker way to do this? Seems like it should be easier than this, but I'm having a mental block. Basically I need to remove items from an dictionary and recurse in …