-
I use CSharp. I have two columns, Start and End, datatype:smalldatetime, nullable. If i chane column names to something similar (PeriodStart, PeriodEnd) it's all ok. This is the error: Incorrect syntax near the keyword 'End'. Description: An unhandled exception occurred during the execution...
-
I have two pages, both of them displaying the same data from the same table. One page is generated using BLINQ. The other is implemented using DataSet and ADO.NET. I found that the BLINQ generated page is much slower than the DataSet implemented page. Is this because BLINQ/LINQ/.NET 3.0 is still in beta...
-
Polita, What Marc has found with updating (and I know about the fix there) I found the same with deleting, making columns invisible (and only some at that) break the delete as I assume its expecting all the values back to check before deleting. How do I get around this ? Thanks Zeid BTW Thanks for Blinq...
-
After watching the video ( lang.net ) , it just has taken me about 30 mins to make blinq fulfill my first need. I am using the website generated by blinq to navigate a decently complex database. This is helping me to view the data and make sense out of them in the development process (i modified few...
-
Hi, I have generated some classes by running BLINQ against a database that I would like to use as ObjectDataSource for GrideView. The problem is that it works as long as I have all the columns listed in the GridView but as soon as I take any of the columns away, it starts to complain that it could not...
-
Ik was looking at this blog post that explains the implementation of LINQ's Skip(n) and Take(n) extensions methods . He posted this SQL snippet: ALTER procedure [dbo].[testSearchProc] @p0 as nvarchar (20), @p1 as nvarchar (20), @p2 as nvarchar (20), @p3 as nvarchar (20) as SELECT TOP 10 [t0].[numAttributeID...
-
I ready an article on ScottGu's Blog regarding LINQ but my head is still in the air as to how would I apply this new technology into my applications. A question I have is if I have all my data extraction done through Stored Procedures, how can I benefit from LINQ? Any advice would be helpful. :)
-
Hello Everyone, I would like to import a text file which contains one string (a large integer) per line not separated by commas or anything else except a carriage return. Does anyone know of an easy way to store this in a database file? I'm open to suggestions if there is more than one way to save this...
-
I have the March CTP installed. I installed Blinq and when I try to run it it gives me the following error Error: May Linq CTP is not installed or configured correctly. You can download it from http://msdn.microsoft.com/data/ref/linq/ If you are running Blinq from a command window, close it and open...
-
I keep getting this error: End of statement expected. Here is the line of code, seems simple and straight forward: Protected Sub Page_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Load Dim phy = From physician In db.Physicians Where physician.Email = "test@test.com" Select physician...