icollection

    0熱度

    5回答

    我需要添加到一個ICollection<string>屬性,其中我有一個IEnumerable。這裏是一個說明該問題的完整方案: using System; using System.Collections.Generic; using System.Linq; namespace CollectionAddingTest { public class OppDocumentS

    3熱度

    1回答

    C#嚮導控制具有ActiveStepChanged當我們通過嚮導的步驟移動時觸發的事件最後一步。目前的步驟是存儲在一個名爲ActiveStepIndex財產。我需要立即檢索當前ActiveStepIndex前面的步驟。 我想這樣,但沒有結果到現在: ICollection s = wizTransferSheet.GetHistory(); IList steps = s as IList;

    1熱度

    1回答

    可以出現在EF您必須使用ICollection的爲您的屬性, eg. public virtual ICollection<Question> Questions { get; set; } 但我wan't使用LINQ該名單,這是不可能的在ICollection中。 我應該將它轉換爲IQueryable嗎?怎麼樣?或者什麼是實現這一目標的標準方法?

    3熱度

    3回答

    可能重複: What is the difference between List (of T) and Collection(of T)? 我有一個靜態類和一個getter返回我的收藏列表。現在我閱讀並被告知要返回ICollection而不是List。在公共靜態列表中使用公共靜態ICollection的優點是什麼? static class Storage { private sta

    1熱度

    1回答

    背景:我有一個DirectoryCollection<T>類型的泛型集合,並且指定T必須是IEntity類型。我有一個具體的類型Entity,它實現了IEntity和兩個派生類型,Employee和Station。 在.NET 4.0中,我知道這是可能的(from here)調用方法與IEnumerable<Entity>參數爲DirectoryCollection<Employee>,但是,它似

    3熱度

    1回答

    這是數據模型我有: public class Team { [Key] public int Id { get; set;} [Required] public string Name { get; set; } [MinLength(1)] public virtual ICollection<User> Users { get;

    0熱度

    1回答

    我正在處理現有的MP3文件聯機庫。代碼的一部分在數據庫中查找包含系列標題中的某個字符串的文件。 public ICollection<Series> ListTruthAndLifeSeries() { return (from f in ActiveRecordLinq.AsQueryable<File>() where f.SeriesTitle.Contains("Truth a

    0熱度

    1回答

    我無法獲得PagedDataSource以使用IEnumerated集合的EntityCollection對象作爲數據源。 的PagedDataSource接受集合作爲一個數據源,但我就不能使用基本屬性,如和IsLastPage等 我的應用程序中斷與錯誤Cannot compute Count for a data source that does not implement ICollectio

    2熱度

    5回答

    所有的,我有一個應用程序需要定期連接和分離多個SQL數據庫。我想創建一個類,將所有這些數據庫保存爲可迭代的集合。要做到這一點,我從ICollection繼承,但有一些thinkg我不理解: class SqlDataBases : ICollection<SqlDb> { private List<SqlDb> dbColl; public SqlDataBases()

    3熱度

    2回答

    鑑於這樣的情況時,會發生什麼? ICollection有一個計數屬性。這個演員是枚舉enumerable來獲得計數還是做更多的事情發生?