http://bugzilla.novell.com/show_bug.cgi?id=551671
User [email protected] added comment http://bugzilla.novell.com/show_bug.cgi?id=551671#c4 Christian Weyer <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW Info Provider|christian.we...@thinktectur | |e.com | --- Comment #4 from Christian Weyer <[email protected]> 2009-11-11 07:58:37 MST --- TResult in this case is List<Epsiode> : using System; using System.Runtime.Serialization; using SQLite; namespace iTecTeacher { /// <summary> /// Data contract that represents the contract for a video episode. /// </summary> [DataContract( Name = "TecTeacherEpisode", Namespace = Constants.DATA_CONTRACT_NS)] [Serializable] public partial class Episode { private int episode; private string title; /// <summary> /// Gets or sets the episode number. /// </summary> /// <value>The episode number.</value> [DataMember(Name="Episode")] [Indexed] public int ID { get { return episode; } set { episode = value; } } /// <summary> /// Gets or sets the video title. /// </summary> /// <value>The episode title.</value> [DataMember(Name="Title")] public string Title { get { return title; } set { title = value; } } } } -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
