ienumerable

    3熱度

    1回答

    我最近一直在使用dapper,並希望做一個動態的方法,可以更容易地選擇SQL與事情。 這是我的代碼: 類: public class Method { public static IEnumerable<dynamic> QueryAll(string table) { dynamic dyn = table; SqlConnection con =

    1熱度

    3回答

    如何數據表列轉換爲IEnumerable的[]這是需要在R.NET 創建一個數據幀我有以下代碼: DataTable dt = CreateDateTable(); REngine e = REngine.GetInstance(); IEnumerable[] columns = new IEnumerable[dt.Columns.Count]; string[] co

    0熱度

    1回答

    我正在實現一個經典的遺傳算法。在交叉階段,我發現了一些奇怪的行爲。 private static void Crossover(ref List<CrossoverPair> pairs) { var random = new Random(); //TODO debug this foreach (var pair in pairs) { f

    1熱度

    1回答

    我想使用IEnumerable返回數據與給定的字段,在那裏我調用我想引用具有給定字段名稱的數據的方法並返回該數據。 例子,這裏是功能 public IEnumerable<IDataRecord> GetSomeData(string fields, string table, string where = null, int count = 0) { string sql

    0熱度

    1回答

    Asp.NetCore EntityFrameWorkCore 庫模式 我的項目建立然而下拉這裏顯示一些命名空間: 這裏是我的代碼: 型號: public partial class Commodity { public Commodity() { } public IEnumerable<SelectListItem> Commodit

    0熱度

    2回答

    元素: IEnumerable personeller = (IEnumerable)sicil_model.OlayForm_Personel(); 我循環裏面像這樣 foreach (var personel in personeller) { //can't do anything... } 我循環內personeller,我可以看到所有元素像這樣 personeller[0]

    1熱度

    2回答

    我在Cassandra DB中有一個列表。 我使用下面的代碼來接他們, string query = "select name from table where userid = 'abcd' ;"; try { Connector connector = new Connector(); session = connector.Conn

    4熱度

    2回答

    LINQ有兩種計算枚舉數的方法:Count和LongCount。實際上,這兩者之間的唯一區別是第一個返回int,而第二個返回long。 我不清楚爲什麼添加第二種方法。看起來它唯一的用例是處理超過2B個元素的枚舉。這似乎是一個錯誤的決定對我來說,有幾個原因: 大多數BCL藏品是由一維數組,其具有保證,以適應在int長度的支持。試圖通過這將提高OverflowException/OutOfMemory

    -2熱度

    4回答

    我會嘗試在Asp.Net MVC 5(代碼優先)中創建自定義身份驗證和授權。在模型中,我創建了2級,UserAccount和UserAccountModel 我有 return listAccounts.Where(acc => acc.UserName.Equals(username)); 錯誤代碼是不是英文的,但像這樣在UserAccountModel的錯誤: 是不可能的隱式轉換IEnum

    0熱度

    1回答

    我想通過c#和windows窗體來模擬Outlook的搜索功能的最新版本。具體來說,我想爲給定的字符串「搜索所有郵箱」。有超過50個文件夾和90,000封電子郵件。 目前,我可以使用LINQ搜索任何一個文件夾並獲得結果。我編寫了一些代碼來遍歷所有文件夾,並創建一個我可以查詢的大規模IEnumberable。 public IEnumerable<MailItem> SharedInbox