linq-to-sql

    -1熱度

    1回答

    進入List<string>中的客戶ID列表。 我然後檢索從我的數據庫的客戶,其在List<Customer> 舉行我想獲得客戶ID不屬於我的數據庫,但在客戶字符串列表,所以我可以將它們刪除的列表。所以 如果List<string> ThirdpartyList有這些數據: Record 1: 1234 Record 2: 1235 Record 3: 1236 Record 4: 1237

    1熱度

    2回答

    我有以下數據一個非常簡單的命令表: ============================= | Timestamp | Count | ============================= | 12/30/2016 | 322 | | 12/29/2016 | 322 | | 12/28/2016 | 322 | | 12/4/2016 | 541 | | 12/3

    0熱度

    1回答

    我有以下Linq,我認爲它在語法上是正確的。 var result = from t1 in context.t1 join t2 in context.t2 on new { t1.field1, t1.field2 } equals new { t2.field1, t2.field2 } select new { t1, t2 }; 但我收

    1熱度

    2回答

    我試圖從具有不同類別的數據庫表中獲取記錄。我想從每個級別獲取1個隨機記錄。 我試着實現這一使用: var results = (from o in db.tblName where o.category== 1 orderby Guid.NewGuid() select o).Take(1).Union (from o in db.t

    0熱度

    1回答

    我在數據庫表中的NullableBIGINT場。 我正在使用linq到sql從c#中的表中檢索數據。 c.ExtensionID ==(的extensionID == 0(長)空:??的extensionID) 上面這段代碼是我在用的當前,但它不返回我的在ExtensionID列中有空的行。 但如果我使用它像c.ExtensionID == null那麼它將返回記錄。 以下是完整的LINQ to

    0熱度

    2回答

    我想從xml文件插入數據到sql數據庫。在我的xml文件中有很多不同的行。但是很多行都包含空的double值。當我嘗試將此添加到我的數據庫時,我收到一個錯誤。 這裏是我的數據庫插入一條捷徑: Table<Step> step = Accessor.GetStepTable(); Step stp = new Step(); stp.Angle1Actual = s

    2熱度

    1回答

    我們在LINQ to SQL中有orderby子句,就像下面一樣,但是我們有什麼分頁功能嗎? from trans in DB.transactions orderby trans.column descending select trans; 或者我們必須手動(排序)像下面的查詢? (from trans in DB.transactions orderby trans.column

    0熱度

    1回答

    蔭在我的項目retriving數據從我的數據庫「的LINQ to SQL」 我的問題是,LINQ到SQL創建了一個文件名爲「擊中。 designer.css「 這個文件得到了我的所有實體/模型的汽車,自行車,飛機。 LINQ TO SQL可能爲每個實體創建一個新文件嗎?

    2熱度

    1回答

    表: ID State Rate 2 NY 8 1 CA 10 1 NY 9 2 IL 7 2 WA 8 1 WA 5 Linq的結果表: ID State ApprovedR Not-ApprovedR 2 NY 8 9 1 CA 0 10 2 IL 7 0 2 WA 8 5 房價的ID=1記錄被視爲

    -1熱度

    1回答

    我無法將這個sql查詢寫入linq.can任何機構請help.thanks提前 select catp.Name from Article art join Categorys cat on art.CategoryId=cat.CategoryId join Categorys catp on cat.ParentCategoryId=catp.CategoryId or cat.Catego