No announcements
Found 2120862 threads
-
0 Votes
Hirearchical query with Linq
LINQ does not have a recursive query operator. What you've done with the database function is the best you can do right ...Answered | 1 Replies | 3848 Views | Created by kesavkolla - Wednesday, May 9, 2007 9:35 PM | Last reply by Matt Warren - MSFT - Thursday, May 10, 2007 3:14 PM -
0 Votes
Datagridview query with LINQ
Hi Beck080, You mean you want to use Linq to query a DataGridView that is not data bound ? Please try this: var result = from DataGridViewRow p ...Answered | 1 Replies | 3975 Views | Created by Beck080 - Sunday, June 20, 2010 1:03 PM | Last reply by Alex Liang - Tuesday, June 22, 2010 7:31 AM -
0 Votes
Query with Linq
This is actually a LINQ to SQL question, not an Entity Framework question. You need to add a reference to System.Data.Linq.dll and ensure your file has the line "Imports ...Answered | 1 Replies | 3881 Views | Created by kio2008 - Tuesday, April 20, 2010 8:04 PM | Last reply by Jonathan Aneja -- MSFT - Monday, April 26, 2010 9:59 PM -
2 Votes
Basic XML Query with Linq
prepend the element name with the namespace, then you're done: XDocument document = XDocument.Load(Answered | 7 Replies | 2898 Views | Created by mupersan82 - Saturday, January 28, 2012 1:41 PM | Last reply by Marcel Roma - Saturday, January 28, 2012 6:19 PM -
9 Votes
Optimize query with LinQ, how?
more in line with your meaning. Best Regards, Timon MSDN Community Support Please remember to click "Mark as ...Answered | 9 Replies | 660 Views | Created by Markus Freitag - Monday, July 20, 2020 2:30 PM | Last reply by Naomi N - Thursday, July 23, 2020 1:13 PM -
0 Votes
how to bulk query with LINQ?
select foo; Starting in Beta2 LINQ to SQL generates a SQL query ...Unanswered | 2 Replies | 4084 Views | Created by haughki - Thursday, August 2, 2007 11:25 PM | Last reply by haughki - Friday, August 3, 2007 1:22 AM -
0 Votes
How to have nested query with LINQ
i am not good in LINQ but when i try to compose a linq query then getting Error. void Main() { var csvlines = File.ReadAllLinesAnswered | 5 Replies | 388 Views | Created by Mou_kolkata - Tuesday, June 16, 2015 1:46 PM | Last reply by Kareninstructor - Tuesday, June 16, 2015 2:28 PM -
0 Votes
Query Datatable with LINQ
Hi, I'm doing a query in my c# code behind to a datatable with the following ...Answered | 2 Replies | 2378 Views | Created by HugoDias - Tuesday, November 13, 2012 5:38 PM | Last reply by HugoDias - Tuesday, November 13, 2012 7:26 PM -
0 Votes
Query XML with LINQ
Hi Deborank, it's OK for removing manually the attributes but the clause where is completly ignored in my query. Maybe something wrong ...Answered | 12 Replies | 3888 Views | Created by MauroGv - Monday, June 8, 2009 7:11 PM | Last reply by DeborahK - Tuesday, June 9, 2009 3:54 PM -
0 Votes
filter query with linq and dynamic data template
list view to filter my query results, cause i dont want a customer to see data of other customers. I set up the page to use linq to get data from my sql ...Unanswered | 1 Replies | 8267 Views | Created by jimslim - Tuesday, November 3, 2009 11:01 PM | Last reply by Wesley Yao - Thursday, November 5, 2009 2:31 AM -
0 Votes
VB Dynamic Run-Time query with Linq and Lambda Expressions
5") _ select OrderAnswered | 5 Replies | 3118 Views | Created by BermudaLamb - Monday, March 16, 2009 11:19 PM | Last reply by BermudaLamb - Friday, March 20, 2009 1:52 PM -
1 Votes
Advise needed to setup an XmlFile and query with linq
Here is an example how you could query the sample you posted first with LINQ to XML:Answered | 7 Replies | 4051 Views | Created by devBrix - Sunday, January 4, 2009 9:27 AM | Last reply by devBrix - Sunday, January 4, 2009 2:21 PM -
0 Votes
LightSwitch custom query with LINQ using delegates does not work
Apparently, SQL functions are not supported. There are other restrictions that we have with LINQ in LS. I am curious why you needed to add a field ...Answered | 8 Replies | 2987 Views | Created by Satria1978 - Tuesday, November 22, 2011 4:28 PM | Last reply by Eng. 3oon - Thursday, March 1, 2012 7:38 AM -
0 Votes
How to do a simple query with LINQ
<auth>Auth Key</auth> </response> The function that is querying the xml lives inside a class where I have two properties, user ...Answered | 2 Replies | 3838 Views | Created by Jhorra - Friday, April 11, 2008 3:41 PM | Last reply by Jhorra - Friday, April 11, 2008 5:00 PM -
0 Votes
Proper way to query with LINQ to SQL
For each table in our database, we have a DAL object and a BLL Service Object. let say we have an Deal table and DealDocument table. One deal can have many related ...Answered | 1 Replies | 3724 Views | Created by SamG87 - Thursday, March 18, 2010 4:05 PM | Last reply by Syed Mehroz Alam - Thursday, March 18, 2010 5:53 PM -
0 Votes
Need help with query/Linq
write the LINQ query as: List<int[]> list = new List<int[]>() { new int[] { 23, 9, 27, 28 }, new int[] { 23, 9, 28, 29 }, new int[] { 23, 9, 29, ...Answered | 2 Replies | 648 Views | Created by Borrie - Friday, March 21, 2014 10:56 AM | Last reply by Borrie - Monday, March 24, 2014 7:48 AM -
0 Votes
How to write this query with Linq to show the data ?
i have a trouble to write a query with Linq i explain better my case, i have a database with 2 tables as follow :Answered | 4 Replies | 3726 Views | Created by JonnyNH - Thursday, June 9, 2011 7:17 AM | Last reply by JonnyNH - Tuesday, June 14, 2011 1:20 AM -
0 Votes
dataview from linQ query with join
Hello everybody, I would like to know if it is really impossible to produce a dataview from a linQ query with one or more join please ...Answered | 1 Replies | 4334 Views | Created by benj007 - Tuesday, December 14, 2010 9:25 AM | Last reply by BeharaVenkata - Tuesday, December 14, 2010 3:35 PM -
0 Votes
convert query to linq with group by and sum
Hi guymalka, Have you tried to write the LINQ query and are there any problems? Here is a simple version to join tables and select with ...Answered | 1 Replies | 1071 Views | Created by guymalka - Thursday, May 9, 2013 1:47 PM | Last reply by Chester Hong - Friday, May 10, 2013 9:48 AM -
3 Votes
tarnsaction in linq or how pass a tabel data type in query with linq to insert in order detail?
is your Opinion about entity framework or transaction with LINQ or transaction in LINQ. my query:Answered | 8 Replies | 2853 Views | Created by atefe naeini - Monday, July 23, 2012 5:07 AM | Last reply by John T. Angle - Wednesday, July 25, 2012 8:03 PM - Items 1 to 20 of 2120862 Next ›
No announcements