Thunderstruck icon indicating copy to clipboard operation
Thunderstruck copied to clipboard

A really fast way to access databases with ADO.NET

Results 5 Thunderstruck issues
Sort by recently updated
recently updated
newest added

Hey, nice job! currently the connection string is loaded from app/web config file, but Im wondering if there is a way to set the connection string directly to the context,...

I believe I have noticed a bug and it's a significant one. In your readme you have this: context.All("SELECT \* FROM Cars WHERE Name LIKE %@0%", "Lotus"); But this causes...

Hi I am trying to use the DataObject to insert a row into a table that has a Guid PK. It works great with an incrementing Id. But once I...

I have the following code: ``` using (var context = new DataContext("SiteSQLServer",Transaction.Begin)) { var job = new DataObject(); int cntr = 1; foreach (var item in ViewState) { omv_JobSeekerReferences r...