Questions tagged [custom-collection]

19 questions
0
votes
1 answer

Custom Objects in Custom List WPF

I have a viewmodel called Calendar. in Calendar there is a list of CalendarDaySquare objects. They are displayed in a ItemsControl that is a uniformgrid (from the ItemsPanelTemplate). On each of these calendarDaySquares I want to populate it with…
kyle k
  • 11
  • 3
0
votes
1 answer

NHibernate custom collection won't hydrate

I have a custom collection that wraps a .net HashSet and implements ICollection, which I then map as a set. I did this in the hope that NHib would be able to use the ICollection interface to the way it can do when using just a .net HashSet, as…
Berryl
  • 12,471
  • 22
  • 98
  • 182
0
votes
1 answer

Custom Collection null when passed through WCF Service

We have some custom collections such as this: [Serializable] public class OccupationCollection : Collection { } We use these in objects like the following: private OccupationCollection _occupations; public OccupationCollection…
AWeim
  • 259
  • 4
  • 12
0
votes
1 answer

Pass UDT defined in a package as a parameter to stored proc in Oracle

A package is created to define a custom collection and a stored proc having this custom collection as an input param. How do I call this proc from c# ? Here's the package: CREATE OR REPLACE PACKAGE pkg_name AS TYPE customCollectionType IS…
1
2