Search Results

1
vote

Local Database with Silverlight

VistaDB is a database that is 100% managed code, but I am not sure that is a great idea to have a silverlight embed the entire database. I think you are "supposed" to pull / post your data using w …
7
votes

What’s so wrong about using GC.Collect()?

Well, the GC is one of those things I have a love / hate relationship with. We have broken it …
6
votes

Do C# Generics Have a Perfomance Benefit?

Not only yes, but HECK YES. I didn't believe how big of a difference they could make. We did testing in VistaDB after a rewrite of a small percentage of core code that used ArrayLists and HashTab …
2
votes

What’s the best way for a .NET winforms application to update itself without using ClickOnce?

Indigo Rose has a product called TrueUpdate that also does this for you. I have used them in the past from both managed and unman …
0
votes

Response.Redirect(””) inside “using{ }”

All using statements are scope based. So no matter how you exit the function everyone that was stack based at that point is cleaned up from the using. Exceptions, returns, etc. I don't …
3
votes

Can a .NET app be complied to native.

You CAN compile IL into native binaries. There are products that do it. The larger question is should you... If you want to remove all dot net dependencies to run without d …
3
votes

Is there anything like C# (.NET) Library that works as API for Google?

Yes, Google limits the number of queries per hour... All search engines do unless you have a partnership agreement with them, or pay them for the lookups. It costs to do your que …
5
votes

What have your experiences been with Entity Framework?

Well, I just finished implementing a complete system in EF, it was my first real experience with the EF in a production environment. The app is running now for about 45 days with 100's of users hi …
4
votes

Lock free stack and queue in C#

Late, but better than never I thought I would add Julian Bucknalls articles to this list. But he does not have performance numbers. In my testing of his structures the list scaled well com …
2
votes

Lightweight SQL database which doesn’t require installation

You could look at VistaDB if you are writing in .NET. It is 100% managed code, contains true referential integrity, tsql stored procs, clr procs, and much more in a single assembly you can xcopy d …
1
vote

Embedded Database for .net that can run off a network

A little late to the post here.. And VistaDB is already mentioned, but I wanted to point out that VistaDB is 100% managed (since your post was tagged …
2
votes

Embedded database for .net

I just wanted to chime in late here with more information on VistaDB. Our SQL Syntax is very close with SQL Server syntax, and we include TSQL and CLR Stored Procs. Runs in process …
1
vote

How to automatically upgrade deployed database for end-users

The only thing I would add to the above comments is that you also need to be worried about a pack type operation. To upgrade your apps from SQL CE 3.1 to 3.5 required you install the 3.5 li …
2
votes

Running 32 bit app using 32 bit com on a 64 bit Windows machine

The first answer above is the correct answer. You cannot run a CPU ANY target application on 64 bit Windows if you reference a 32 bit COM component. It will not load. What is happening i …
9
votes

I’m losing all my cache… (Items are disapearing from my cache)

It won't matter how long you tell it to stay in the cache if the app pool is set to recycle every xx minutes. On most Servers the app pool recycles by default every 1440 minutes (24 hours). Your …

1 2 next
15 30 50 per page