No announcements
Found 1125757 threads
-
0 Votes
Convert select statement to Linq
What you should do is use Linqpad and play until you are satisfied with your Linq query.Answered | 3 Replies | 886 Views | Created by brucey54 - Tuesday, October 20, 2015 9:05 PM | Last reply by Hardz Tarrayo - Wednesday, October 28, 2015 2:07 AM -
0 Votes
[Resolved] sql statement to linq statement equivalent
Hi, How can I translate this sql syntax statement to a linq to sql codes??Answered | 1 Replies | 3701 Views | Created by den2005 - Thursday, January 22, 2009 6:43 AM | Last reply by den2005 - Saturday, January 24, 2009 3:10 AM -
0 Votes
Convert sql to linq using c#
Hi Sivar89, This forum is about the C# programming language, IDE, libraries, samples, and tools, as your needs are more related to the LINQ programming, we would ...Answered | 6 Replies | 2990 Views | Created by Sivar89 - Friday, March 11, 2016 12:06 PM | Last reply by Zhanglong Wu - Monday, March 21, 2016 3:11 AM -
1 Votes
Simple LINQ to SQL Statement
I really dont think this is difficult but i cant seem to come up with the LINQ for it.Answered | 5 Replies | 4124 Views | Created by femig - Tuesday, June 29, 2010 10:41 AM | Last reply by John T. Angle - Wednesday, June 30, 2010 11:48 AM -
0 Votes
converting SQL UDF to LINQ
ASP.NET Forum, which I qouted in the following: public string GetAccountTypeDescription (string ...Answered | 1 Replies | 3284 Views | Created by sparrow37 - Thursday, May 12, 2011 6:51 AM | Last reply by Jackie-Sun - Monday, May 16, 2011 6:08 AM -
0 Votes
How to convert the SQL to LINQ query
>How to convert the SQL to LINQ query Based on your SQL statement, it seems that you use in clause, we could use contains method to ...Answered | 4 Replies | 1035 Views | Created by SamsonYerraguntla - Thursday, July 7, 2016 4:33 PM | Last reply by Zhanglong Wu - Friday, July 8, 2016 3:30 AM -
0 Votes
How to convert SQL to Linq
Actually, generated SQL statement from .Net 4.0.Answered | 9 Replies | 8720 Views | Created by Eagle Tsui - Wednesday, June 30, 2010 8:32 AM | Last reply by Michael Sun [MSFT] - Thursday, July 8, 2010 8:30 AM -
0 Votes
Converting Cross join SQL to LINQ
The query I wrote in sql and I m trying to convert into linq.Answered | 5 Replies | 4405 Views | Created by airfan - Saturday, December 5, 2009 12:30 PM | Last reply by Tamer Oz - Sunday, December 6, 2009 5:27 AM -
1 Votes
In statement in Where Condition Linq
Are you using LINQ to SQL?Answered | 3 Replies | 4139 Views | Created by Sanjay Patel - Saturday, July 11, 2009 11:47 AM | Last reply by Martin Honnen - Saturday, July 11, 2009 3:23 PM -
5 Votes
Convert a SQL statement to a SRSS statement
1 THEN [Ytd] - [Target] ELSE [Target] - [Ytd] END Then we can use the expression below to achieve the same goal in Reporting Services: =iif(Fields!Answered | 6 Replies | 1086 Views | Created by pepcoder - Wednesday, April 23, 2014 4:50 PM | Last reply by Katherine Xiong - Monday, April 28, 2014 1:29 AM -
0 Votes
Converting SQL statement to VBA
If you want to convert SQL to VBA, or convert VBA to SQL, you can use this handy ...Answered | 6 Replies | 13335 Views | Created by Palaau_A - Tuesday, May 1, 2012 2:44 PM | Last reply by ryguy72 - Thursday, May 3, 2012 2:27 PM -
1 Votes
Converting a Complex SQL Query to LINQ
If your LINQ Query will finally run in database, there is no reason to do it in LINQ.Answered | 5 Replies | 4730 Views | Created by ItsMeKapz - Friday, November 9, 2012 6:22 PM | Last reply by Fernando Soto - MCSD - Wednesday, November 14, 2012 3:59 PM -
0 Votes
Trouble in converting SQL to LINQ
Davearia, Plz download this tool: http://sqltolinq.com/ If this still cannot help u, it seems that you have to use SQL (ADO.NET) or ...Answered | 3 Replies | 3131 Views | Created by Davearia - Friday, February 22, 2013 3:58 PM | Last reply by Davearia - Monday, February 25, 2013 11:26 AM -
0 Votes
Complex SQL convert to linq
Lingzhi Sun is right, you may reuse your T-SQL in the form of an ordinary ADO query and use LINQ/ADO to send it to SQL Server from your app.Answered | 4 Replies | 4602 Views | Created by Watty45 - Wednesday, May 12, 2010 11:32 AM | Last reply by Michael Sun [MSFT] - Monday, May 17, 2010 1:52 AM -
2 Votes
How to convert Oracle/SQL Query to Linq.
because in my case user always right SQL query not Linq Query so i want to convert from sql query to Linq, and i dont know how query ...Answered | 9 Replies | 9590 Views | Created by Jumpingboy - Thursday, August 16, 2012 7:44 PM | Last reply by Serguey123 - Monday, August 20, 2012 4:11 PM -
1 Votes
Convert sql to linq/entiti framework
If you only want Usuarios with a Relacione this should work: var res = (from r in context.Relaciones join u in context.Usuario on u.idUsuario equals r.idUsuario select ...Answered | 3 Replies | 639 Views | Created by Felipe bird - Saturday, November 7, 2015 7:04 PM | Last reply by Magnus (MM8) - Wednesday, November 11, 2015 1:04 PM -
0 Votes
Need help with an linq statement.
Hello, OK I used the Linqer Tool to generate the linq from my sql statement.Answered | 4 Replies | 2063 Views | Created by thanei - Friday, July 27, 2012 3:55 PM | Last reply by thanei - Tuesday, July 31, 2012 8:41 AM -
0 Votes
Convert SQL to LINQ
Hello Greg, Welcome to LINQ Project General forum!Answered | 2 Replies | 3354 Views | Created by Greg05 - Tuesday, November 24, 2009 12:18 AM | Last reply by Michael Sun [MSFT] - Monday, November 30, 2009 12:38 AM -
0 Votes
Converting a complex sproc to linq to sql
If you have associations and navigation properties in place then the query would be slightly shorter as a linq query.Answered | 1 Replies | 3990 Views | Created by Bill2010 - Thursday, September 16, 2010 6:21 PM | Last reply by KristoferA - Friday, September 17, 2010 2:48 AM -
0 Votes
Convert Linq to SQL to Linq to Entities: LINQ to Entities does not recognize the method 'System.String ToString()' method, and this method cannot be translated into a store expression
I am wondering why that exception is thrown, because it works without any troubles in Linq to SQL.Answered | 3 Replies | 8667 Views | Created by Tim Sanderson - Monday, September 28, 2009 5:50 PM | Last reply by Huagati Systems - Tuesday, September 29, 2009 11:43 AM - Items 1 to 20 of 1125757 Next ›
No announcements