0
votes
3answers
21 views
Spacing out output with Linq to Xml
How is it possible to force extra spacing between some nodes using Linq to Xml? I am looking to output the following:
<root>
<group>
<leaf />
</group>
…
0
votes
2answers
47 views
How do I Check previous data in LINQ?
I have a collection of data that checks if there is a change in a particular field to get the sum for another column.
Total = Details.Where(s=>s.indicator != *prior indicator before this...).Sum(s …
1
vote
3answers
38 views
linq image saving problems
I have an object that has a property:
[Column]
public Binary Image { get; set; }
When the object is saved the first time every this is OK, but when it is modified I get an exception on …
0
votes
1answer
23 views
multiple innerjoins with linq
I've got the following sql statement and need to know how to write it in linq, but i can't figure out how to write the multiple inner joins
SELECT Zugehörigkeiten.PK_Dept_ID
FROM mitarbeiter
…
1
vote
2answers
52 views
Strange LINQ to SQL behaviour (BUG?)
We have this very strange issue on LINQ to SQL Code.
Consider this code snippet :
var wissen = db.Table.Where(f => f.Name == somevalue);
db.Table.DeleteAllOnSubmit(wissen);
db.SubmitChanges();
…
0
votes
3answers
25 views
rewriting a SQL/vb6 app - should I use nHibernate or Linq
Hi experts,
I have a legacy VB6 app which I am rewriting in .Net. I have not used an ORM package before (being the old fashioned type who likes to know what SQL is being used), but I have seen good …
2
votes
2answers
26 views
Linq, Entity Framework and WCF
If I have a customers and orders relationship in my Linq or EF model, at the WCF service layer I can add an order to the customer by calling
Customer.Orders.Add(customer);
When I access my …
1
vote
2answers
46 views
Get empty slot with lowest index from an array
Hi,
I am using .NET 3.5. What method of the Array class is best for returning a empty index in an array (which can then be used for populating). The Single/SingleOrDefault() methods look good, but if …
1
vote
1answer
38 views
LINQ Querying Against DataSet
I Want to print out the number of tables in a Typed dataset along with the number of fields associated with each table and the key fields { primary,foreign}. How to get this information using LINQ?
0
votes
2answers
32 views
convert code to use Linq
Hi all,
I have the following code, I want to use Linq, any possible ??
I have one list of users, and I need generate other list.
any help ? thanks in advanced, greetings
…
2
votes
2answers
76 views
How to implement a LIKE operation in a search form in C#?
Hello,
I'm using the code below for my search logic, basically, it evaluates a field when there's an input on the corresponding textbox or dropdown, my problem is that the code is only for exact …
2
votes
3answers
82 views
Why do casting to (int?) work while (string?) doesnt in LINQ queries
Hi,
I'm writing a simple LINQ to XML query. As often, the some elements might be missing for some nodes in the XML document. To solve this issue, I tried to use nullable types and the coalesce …
0
votes
0answers
2 views
Increase sql timeout subsonic3
Is there a way to increase the sql timeout in subsonic 3 when using LINQ?
Example code
var db = new Edumatic3DB();
var treeNodes = from tn in db.TreeNodes
join ts in …
0
votes
1answer
25 views
Perform an aggregation on a DataTable with Linq in vb.net
Given a datatable, I wish to output an IEnumerable type (dictionary(of T) would be perfect, otherwise a datatable would be acceptable) that provides an aggregation of the data within the datatable.
…
0
votes
4answers
46 views
LINQ to XML Newbie Question
I have an loaded an XML document with the following structure:
<?xml version="1.0" encoding="UTF-8" ?>
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" …
