User Jason Short - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T21:45:19Z http://stackoverflow.com/feeds/user/19974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1830598/read-only-search-function-stored-procedures-or-iqueryable-with-pocos-and-ef-4-0/1837669#1837669 0 Answer by Jason Short for Read only Search function. Stored Procedures or IQueryable with POCOs and Ef 4.0 Jason Short 2009-12-03T04:35:53Z 2009-12-03T04:35:53Z <p>You said the ultimate goal is performance. That would mean ADO.NET and straight SQL to me. Adding EF on top of it is a huge amount of overhead for something that needs no state tracking, no update ability, and won't even use all the results.</p> <p>Write SQL against the database and let it do the paging as much as possible. Never pull 1,000's of entries when you plan to throw them out. You also can't take advantage of your servers power with EF for things like FTS, or index hint optimization. You are at the mercy of the EF runtime, which is generic and does not know how to take advantage of specific hardware or servers.</p> <p>You should also look at some caching layer you you know the user is going to query the next set some percentage of the time. It is cheaper to get 2x the initial results and cache the second half for when they call back. Otherwise you expire them at some point.</p> http://stackoverflow.com/questions/1828254/is-there-any-good-orm-for-vistadb/1830878#1830878 0 Answer by Jason Short for Is there any good ORM for VistaDB? Jason Short 2009-12-02T05:43:02Z 2009-12-02T05:43:02Z <p>I would say the built in Entity Framework is ok for most desktop type application (not for nTier for sure). It is free by being included in .Net 3.5 SP1. But if you can't handle that requirement for runtime their there are others that support VistaDB as well.</p> <p><a href="http://www.entityspaces.net/Portal/Default.aspx" rel="nofollow">Entity Spaces</a> has great support and does a LOT more than EF out of the box.</p> <p><a href="http://www.devexpress.com/Products/NET/ORM/" rel="nofollow">DevExpress XPO</a> has support for VistaDB also (although their 4.x support is just now prepping for release as I write this)</p> <p>We also post <a href="http://www.vistadb.net/vistadb/third-party-tools.aspx" rel="nofollow">third party tools on a page</a> within our site (although it is not updated as often as it should be). Opf is listed on that page as well.</p> http://stackoverflow.com/questions/55273/what-are-the-advantages-of-vistadb/111222#111222 13 Answer by Jason Short for What are the advantages of VistaDB Jason Short 2008-09-21T15:24:12Z 2009-11-27T06:41:36Z <p>The VistaDB client runtime is free. The runtime will never "expire at 3am" as you put it. Only the developer tools are licensed in that manner. You need 1 license per developer, simple. We even offer a really inexpensive Lite version with no Visual Studio tools.</p> <p><b>Some other benefits</b></p> <p><strong>100% managed code</strong> - there are no interop or other unmanaged calls in the engine. This is a big deal to some, and others could care less. </p> <p><strong>No registry access required</strong> - Most other in proc databases require registry access to look for parent controls, or permissions. VistaDB only does what you tell it to do, and will even run in Medium Trust.</p> <p><b>XCopy deployment</b> for runtime and your database (single file). You can xcopy you application, the runtime, and your database and run. Nothing to install or configure on the machine, no special privileges needed (we can run in Medium Trust or higher).</p> <p><b>Isolated storage</b> - You can put your entire database into Isolated Storage and run it from there directly. This makes it very easy to build secure click once applications that write databases in a domain friendly way for corporate environments. There is no need to store the user data on a shared drive or worry about permission mapping.</p> <p><b>CLR Triggers / CLR Procs</b> - You can write CLR Code and use them as Triggers or Stored Procs. We have just recently introduced changes to make it even easier to maintain a single CLR Assembly that can run in both VistaDB and SQL Server 2005/2008.</p> <p><b>T-SQL Procs</b> - VistaDB T-SQL Procs are compatible with SQL Server 2005/2008. Any procedure that works in our engine will run in SQL Server. That does not mean anything that runs there will port to us. We are a subset of the functionality in SQL Server. But we are also the only way to run T-SQL Procs without SQL Server (SQL CE can't do it).</p> <p>I personally think one of the biggest features is the ability to upsize to SQL Server later. All of the VistaDB types, syntax, and CLR Procs, T-SQL procs, etc all will run on SQL Server. (You can't take everything from SQL Server down to VistaDB though, it is a subset)</p> <p><b>32/64 bit Deployment</b> - VistaDB is a single assembly deployment that runs both 32 and 64 bit without changes. SQL CE requires two different runtimes depending upon the OS, and cannot run under IIS at all. Access has no 64 bit runtime, and the most recent 32 bit runtime can only be deployed through MSI. The 32 bit version of Windows has the runtime, the 64 bit version does not.</p> <p><b>Relational Integrity</b> - VistaDB also actually enforces your constraints and Foreign Keys. You can specific cascade update, and delete operations. The person who commented we are like SQLITE is wrong in this regard. They parse constraints, but do not enforce them.</p> <p>EDIT: They do have support for FK's now in SQLite. But they are not compiled in by default, and do not use the same syntax as SQL Server.</p> <p><strong>Medium Trust</strong> - The ability to run on a medium trust web server is another feature that many will not care about, but it is a big deal. Many third party controls can't even run in Medium Trust. We can run the complete engine within Medium Trust because of our commitment to 100% managed code and least permission required.</p> <p><b>- Full disclosure -</b> I am the owner of VistaDB so I may be biased. :)</p> http://stackoverflow.com/questions/111196/local-database-with-silverlight/111201#111201 1 Answer by Jason Short for Local Database with Silverlight Jason Short 2008-09-21T15:17:47Z 2009-11-27T06:36:49Z <p>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 webservices.</p> <p>Silverlight 4 might finally change the answer to this question...</p> <p>It appears from our early research that Silverlight 4 (not released and just recently announced) finally appears to support most of the ADO.NET objects so we might be able to run under the Silverlight 4 runtime. This is something we are researching and will post follow ups later with what we find.</p> http://stackoverflow.com/questions/1555550/sql-server-compact-edition-multiple-subscription-issues/1801123#1801123 0 Answer by Jason Short for SQL Server Compact Edition - Multiple Subscription issues Jason Short 2009-11-26T01:40:34Z 2009-11-26T01:40:34Z <p>There is no provision for fail over servers through sync. You would have to setup a SQL Server cluster and have the original sync happen against the cluster.</p> <p>A database on another server can't be provisioned because the triggers and tombstone tables would be out of date. I don't think they are replicated by default.</p> http://stackoverflow.com/questions/1669681/sql-server-ce-nvarchar-foreign-keys-with-trailing-whitespace/1801108#1801108 0 Answer by Jason Short for SQL Server CE nvarchar foreign keys with trailing whitespace Jason Short 2009-11-26T01:37:45Z 2009-11-26T01:37:45Z <p>That is correct. Your only choice is to not use string based FK's. You can create a lookup table with the strings in them that assigned a uniqueID you then use for your FK's if you like.</p> http://stackoverflow.com/questions/687469/does-sql-compact-edition-support-clustered-indexes/1801105#1801105 1 Answer by Jason Short for Does SQL Compact Edition Support Clustered Indexes? Jason Short 2009-11-26T01:35:55Z 2009-11-26T01:35:55Z <p>Most file based databases do not support clustered indexes. It would require a rewrite of the entire index if you inserted a new row out of order. Since this is expensive (and a blocking operation) most file databases do not allow it.</p> <p>BUT, you do normally gain a notion of natural order. The order you insert in is the order they are on disk. This is something you do not have with full SQL Server which is always reclaiming free space from previous pages.</p> http://stackoverflow.com/questions/1554473/linq-to-sql-does-sql-server-compact-ce-support-a-requiresnew-transaction-scop/1801100#1801100 1 Answer by Jason Short for [LINQ-to-SQL] Does SQL Server Compact (CE) support a RequiresNew transaction scope inside another one? Jason Short 2009-11-26T01:33:56Z 2009-11-26T01:33:56Z <p>Nope, you cannot use nested transactions. Run this code on your SQL CE database and you will see the error message.</p> <pre><code>BEGIN TRANSACTION; SELECT 'GOT 1'; BEGIN TRANSACTION; SELECT 'GOT 2'; </code></pre> <p>Major Error 0x80004005, Minor Error 27994 Microsoft SQL Server Compact does not support nested transactions.</p> http://stackoverflow.com/questions/1579975/check-nocheck-for-sql-compact-edition/1801079#1801079 1 Answer by Jason Short for CHECK/NOCHECK for Sql Compact Edition Jason Short 2009-11-26T01:26:43Z 2009-11-26T01:26:43Z <p>NOCHECK is not supported on SQL CE 3.1/3.5</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa237859%28SQL.80%29.aspx" rel="nofollow">ALTER TABLE SQL CE</a></p> <p>The usual method to accomplish this is to drop the constraint, do your operations and then add it back.</p> http://stackoverflow.com/questions/619176/are-table-indexes-getting-replicated-to-my-sqlce-database/1801048#1801048 1 Answer by Jason Short for Are table indexes getting replicated to my sqlce database? Jason Short 2009-11-26T01:15:51Z 2009-11-26T01:15:51Z <p>Actually the answer is "it depends". Some are, and some are not. It also depends on how you provision the mobile database. The different sync properties for provisioning do very different things to the local database.</p> <ol> <li>Peer to Peer never calls FillSchema and does not know the indexes.</li> <li>Server to Client does call FillSchema (and GetSchema()) so it knows the indexes.</li> </ol> <p>So if you are doing peer to peer sync the locally provisioned databases by default do not include all indexes.</p> http://stackoverflow.com/questions/1795074/inserting-1000s-of-rows-to-sql-table-using-ssms/1800838#1800838 1 Answer by Jason Short for Inserting 1000s of rows to SQL table using SSMS Jason Short 2009-11-26T00:10:49Z 2009-11-26T00:10:49Z <p>You will have to split up the commands. The easiest way is to add a GO every 10 lines or so. </p> <p>Basically the SSMS is trying to load all your text into a <strong>single</strong> SqlCommand.CommandText and execute it. That won't work. </p> <p>You need to get it to batch them. GO is an easy split point in SSMS where it will take up to that point and execute it, then continue.</p> <p>LINE1<br/>LINE2<br/> ... <br/> GO</p> <p>LINE11<br/>LINE12<br/></p> <p>That will be run in 2 SqlCommands to the database.<br> If you need them all run in a single transaction you will probably have to write a command line app to load each line and execute it within a transaction. I don't think you can split transactions across executions within SSMS.</p> <p>You could also build an SSIS package, but that is a LOT of work and I don't recommend it unless you need to repeat this process a every so often.</p> http://stackoverflow.com/questions/1114756/sql-server-2008-import-schema-and-data-from-ado-net-provider 0 SQL Server 2008 import schema and data from ADO.NET Provider? Jason Short 2009-07-11T22:01:19Z 2009-11-26T00:04:33Z <p>I am trying to figure how to get SQL Server 2008 to import data using the schema from an ADO.NET Provider. You can use the Database Import wizard and choose any ADO.NET Provider (I am using VistaDB in this case). But once you go to the actual import the Copy Data from one or more tables is grayed out. You can only write queries. I want to copy the entire database schema and data.</p> <p>I found references in the online help that only Microsoft providers can use this by default and that you have to build a custom descriptor for third parties. The help then points to :\Program Files\Microsoft SQL Server\100\DTS\ProviderDescriptors for the directory to look. Looking through the XML file is looks like it wants SQL queries for all the schema and definition loads. Why can't it load them through the GetSchema() call that all ADO.NET Providers have to implement? That doesn't make any sense to me.</p> <p>Then I found that you can get all the schema in a DTS package in SQL Server from any ADO.NET Provider. The last DTS package I wrote was about 10 years ago. Looking at the 2008 version I am totally lost. How do you get a DTS package to load the entire database schema and import it in SQL Server today?</p> <p>Or, am I over thinking this and there is an easier way to do it?</p> http://stackoverflow.com/questions/1114756/sql-server-2008-import-schema-and-data-from-ado-net-provider/1800808#1800808 0 Answer by Jason Short for SQL Server 2008 import schema and data from ADO.NET Provider? Jason Short 2009-11-26T00:04:33Z 2009-11-26T00:04:33Z <p>Ok, I eventually created two blog posts about this subject for migration specifically to SQL Server from VistaDB using SQL Server tools. It is non-intuitive and pretty much you have to use SSIS, there is no other way.</p> <p><a href="http://www.vistadb.net/blog/post/2009/11/13/Using-SQL-Server-Import-and-Export-Wizard-with-VistaDB.aspx" rel="nofollow">Using SQL Server Import and Export Wizard with VistaDB</a> - Mostly information on using the default wizard, but I don't recommend it. It will only do 1 table at a time and it painful to setup. You also can't run this repeatedly with anything other than SQL Server Standard or higher (express can't do it).</p> <p><a href="http://www.vistadb.net/blog/post/2009/11/13/Using-SQL-Server-Integration-Services-to-Migration-VistaDB-4-Data.aspx" rel="nofollow">Using SQL Server Integration Services to Migrate VistaDB 4 Data</a> - Most of what's in this post applies to any ADO.NET Provider. I found parts of the information from mySQL experts, DB2, and others. I just put it all together for VistaDB users.</p> <p>Interesting information is that it took me 3.5 hours to build the migration for an 11 table database through SSIS. The process is very painful and has a lot of click steps that drive me nuts (use the advanced edit, not the normal edit). Once I got the entire SSIS package setup it took about 2 minutes to run. And then I could (in theory) re-run it whenever I wanted. But in my case I only wanted to move the data and structure one time. A lot of time for setup.</p> <p>Then I wrote a simple app to walk all my tables and just spit out SQL statements that I could run from sqlcmd. Writing that app took about 1.5 hours, and executed in about 10 seconds. But then sqlcmd took almost an hour to run all those statements one at a time.</p> <p>I may build a reverse of our Data Migration Wizard (it copies from SQL Server into VistaDB). You can migrate a database in as few as 7 clicks, and it takes seconds to run. All the data access is through the GetSchema() calls to the ADO.NET Provider.</p> http://stackoverflow.com/questions/901049/how-do-i-connect-to-mysql-5-1-in-visual-studio-2010/1652430#1652430 1 Answer by Jason Short for How do I connect to MySQL 5.1 in Visual Studio 2010? Jason Short 2009-10-30T21:29:55Z 2009-11-02T21:50:32Z <p>Microsoft Visual Studio 2010 Beta 2 is busted for <a href="http://en.wikipedia.org/wiki/Digital%5FData%5FExchange" rel="nofollow">DDEX</a> providers. They are auto promoting a VS 2008 assembly from 9.0 to 10.0 and it fails. The failure has to do with the fact that a .NET 2 assembly cannot load a .NET 4 assembly. </p> <p>This worked in beta 1, so it is something they broke.</p> <p>I even went back and tried the reference DDEX provider from the SDK. It won't load in VS 2010 beta 2 either. That tells me they have something that needs to be fixed.</p> <p>When is the next beta?</p> http://stackoverflow.com/questions/1609235/install-visual-studo-2010-beta-2-beside-vs2008/1652541#1652541 1 Answer by Jason Short for Install Visual Studo 2010 Beta 2 beside VS2008 Jason Short 2009-10-30T21:55:52Z 2009-10-30T21:55:52Z <p>Take a look at some of the <a href="http://blogs.msdn.com/kirillosenkov/archive/2009/10/19/visual-studio-2010-beta-2-known-issues.aspx" rel="nofollow">list of known issues in VS 2010 beta 2</a>.</p> <p>I have installed it to a machine with VS 2008 on it that I don't care about. :) Looking at the "correct" uninstall procedure from that link above makes me think that not putting it on a production box is a good idea... Going from that beta to the next one is going to be a PITA.</p> <p>And whoever said they are WPF/Winform it won't conflict is crazy. .Net 4 installs side by side, yes. But there are policy files and binding redirects installed for all editions on your box because VS 2010 can also build / debug / test .Net 2/3/3.5 assemblies. You are touching every .Net runtime on your box when you install VS 2010 (like it or not).</p> http://stackoverflow.com/questions/1651217/visual-studio-2010-beta-2-cleartype/1652465#1652465 0 Answer by Jason Short for Visual Studio 2010 Beta 2 + ClearType Jason Short 2009-10-30T21:36:21Z 2009-10-30T21:36:21Z <p>ollifant I agree with you, they are different. </p> <p>Others may not see any differences from screen shots, but on the actual machine I can see differences. Loading the same project with the same settings side by side looks different. I think it is the difference in how WPF renders fonts or something.</p> <p>The VS 2010 pane looks shifted slightly left, like kerning in the font is off by a little or something. Again - same font in both VS 2008 and 2010.</p> <p>I have tried now on Windows 7 and Windows Vista. Maybe older XP machines render differently, can't say (and no I won't load XP to find out).</p> http://stackoverflow.com/questions/1592457/how-to-debug-a-program-without-a-debugger/1592515#1592515 0 Answer by Jason Short for How to debug a program without a debugger? Jason Short 2009-10-20T04:49:58Z 2009-10-20T04:49:58Z <p>Another thing I have not seen mentioned here that I have had to use quite a bit on embedded systems is serial terminals.</p> <p>You can cannot a serial terminal to just about any type of device on the planet (I have even done it to embedded CPUs for hydraulics, generators, etc). Then you can write out to the serial port and see everything on the terminal. </p> <p>You can get real fancy and even setup a thread that listens to the serial terminal and responds to commands. I have done this as well and implemented simple commands to dump a list, see internal variables, etc all from a simple 9600 baud RS-232 serial port!</p> http://stackoverflow.com/questions/271319/lightweight-sql-database-which-doesnt-require-installation/770940#770940 2 Answer by Jason Short for Lightweight SQL database which doesn't require installation Jason Short 2009-04-21T03:30:08Z 2009-10-20T04:29:58Z <p>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 deploy. </p> <p>VistaDB runs in shared hosting asp.net sites under medium trust, and in active directory domains as guest (no local permissions) as well.</p> <p>There are no registry or other configuration settings required on the machine you deploy the engine on, and the runtime is royalty free.</p> <p>32/64 bit support is included in the single assembly. Mixed mode engines with unmanaged code generally require you to ship more than 1 version of the unmanaged code to support 32 and 64 bit, or to recompile for specific CPU targets.</p> <p>See the <a href="http://stackoverflow.com/questions/55273/what-are-the-advantages-of-vistadb">Advantages of VistaDB</a> SO thread for more information.</p> <p><a href="http://www.vistadb.net" rel="nofollow">http://www.vistadb.net</a></p> http://stackoverflow.com/questions/254552/what-options-are-there-for-serverless-databases/775527#775527 0 Answer by Jason Short for What options are there for serverless databases? Jason Short 2009-04-22T02:34:15Z 2009-10-20T04:27:49Z <p>There are plenty of applications out there that need a serverless database engine. Maybe they want to xcopy or click once deploy to desktop and need a database present for queries and reporting.</p> <p>If you are developing for .Net applications you could look at <a href="http://www.vistadb.net" rel="nofollow">VistaDB</a>. See the SO thread on <a href="http://stackoverflow.com/questions/55273/what-are-the-advantages-of-vistadb">Advantages of VistaDB</a> for more information.</p> <p><b>- Full disclosure -</b> I am the owner of VistaDB so I may be biased. :)</p> http://stackoverflow.com/questions/407521/what-are-the-limitations-to-sql-server-compact-or-how-does-one-choose-a-data/871776#871776 0 Answer by Jason Short for What are the limitations to SQL Server Compact? (Or - how does one choose a database to use on MS platforms?) Jason Short 2009-05-16T05:32:27Z 2009-10-20T04:22:01Z <p>I must also chime in here with <a href="http://www.vistadb.net" rel="nofollow">VistaDB</a> as an alternative to SQL CE. </p> <p>VistaDB does support encryption (Blowfish), it also supports TEXT as well as NTEXT (including FTS indexes on them).</p> <p>And yes the post above is correct in that you have to look at the SQL Server types to really match them up, VistaDB also uses the SQL Server types (we actually support more than SQL CE does; only missing XML).</p> <p>To see other <a href="http://www.vistadb.net/compare/sql-ce.aspx" rel="nofollow">comparisons between VistaDB and SQL CE</a> visit the comparison page. Also see the SO thread on <a href="http://stackoverflow.com/questions/55273/what-are-the-advantages-of-vistadb">Advantages of VistaDB</a> for more information.</p> <p>(Full disclosure - I am the owner of VistaDB so I may be biased)</p> http://stackoverflow.com/questions/108399/what-embedded-database-with-isolated-storage-support-can-you-recommend/1592400#1592400 0 Answer by Jason Short for What embedded database with Isolated Storage support can you recommend? Jason Short 2009-10-20T04:16:41Z 2009-10-20T04:16:41Z <p>I know this question is pretty old, but VistaDB DOES support Isolated Storage and is XCopy deployable. We do not have a free version though, it is a commercial product.</p> <p>Take a look at the SO post on <a href="http://stackoverflow.com/questions/55273/what-are-the-advantages-of-vistadb">Advantages of VistaDB</a> for more information about other things we support.</p> <p>Isolated storage support is much more than just not knowing your filename. You have to work with streams, you have to NOT require file level locking, you can't create temp files in the same path, you have to understand UAC and space limitations.</p> <p>AFAIK VistaDB is the only embedded sql database to support Isolated Storage.</p> http://stackoverflow.com/questions/540520/when-is-it-acceptable-to-break-cls-compliance/1474256#1474256 2 Answer by Jason Short for When is it acceptable to break CLS compliance? Jason Short 2009-09-24T21:29:29Z 2009-09-24T21:29:29Z <p>"[sic] what use is there for being CLS compliant?"</p> <p>Medium Trust, ClickOnce, running from a shared network drive, guest profiles in a domain setting, etc. There are lots of security situations where your code cannot run if you break the CLS Compliance.</p> <p>Have personally seen a lot of situations where users are trying to run their app from a shared network drive and can't because the local admin has killed non CLS compliant apps in the security profile.</p> <p>In general there are usually ways to work around the issue anyway. I would take the opposite approach to the comments above, why break it? You are writing managed code, why would you want to limit your application on purpose?</p> <p>I would say that if you are building an API assembly, or component you should always adhere to them. Too many third party components take the easy way out and just flag them as broken when attempting to run from Medium Trust. In some cases this is the only reason they can't run. If they had taken a little more time to adhere to the guidelines users would not be limited as to how they can use their component.</p> http://stackoverflow.com/questions/704636/sending-email-through-gmail-smtp-server-with-c/1332700#1332700 0 Answer by Jason Short for Sending email through GMAIL SMTP server with C# Jason Short 2009-08-26T06:28:58Z 2009-08-26T06:28:58Z <p>The problem is not one of technical ability to send through gmail. That works for most situations. If you can't get a machine to send, it is usually due to the machine not having been authenticated with a human at the controls at least once.</p> <p>The problem that most users face is that Google decides to change the outbound limits all the time. You should always add defensive code to your solution. If you start seeing errors, step off your send speed and just stop sending for a while. If you keep trying to send Google will sometimes add extra time to your delay period before you can send again.</p> <p>What I have done in my current system is to send with a 1.5 second delay between each message. Then if I get any errors, stop for 5 minutes and then start again. This usually works and will allow you to send up to the limits of the account (last I checked it was 2,000 for premier customer logins per day).</p> http://stackoverflow.com/questions/1330852/where-to-download-visual-studio-express-2005/1330885#1330885 1 Answer by Jason Short for Where to download visual studio express 2005? Jason Short 2009-08-25T20:43:09Z 2009-08-25T20:43:09Z <p>Visual Studio 2005 has been dropped for public download by Microsoft. </p> <p>You can still get it from MSDN if you have a current account, but the public downloads have all been dropped. You can only get VS 2008 Express.</p> http://stackoverflow.com/questions/252683/is-linq-to-sql-doa/253424#253424 5 Answer by Jason Short for Is LINQ to SQL DOA? Jason Short 2008-10-31T13:19:23Z 2009-08-13T22:26:10Z <p><a href="http://stackoverflow.com/questions/253179/best-primary-key-data-type-for-linq-to-sql">Interesting blog post about it.</a> And some related information on <a href="http://ayende.com/Blog/archive/2008/10/31/microsoft-kills-linq-to-sql.aspx" rel="nofollow">Stackoverflow posts</a>.</p> <p>The basic gist appears to be comments made on the <a href="http://blogs.msdn.com/adonet/archive/2008/10/29/update-on-linq-to-sql-and-linq-to-entities-roadmap.aspx" rel="nofollow">ado.net blog</a> that state the Entity Framework is the only thing getting major developer time for Visual Studio 2010 and Dot Net 4.</p> <p>My response is - DUH. We have all known this. Microsoft said publicly back at the PDC 2007 that LINQ to SQL was a short term release for SQL Server because there was no other LINQ story to SQL Server. It only works with SQL Server. You cannot write a LINQ to SQL provider - there is no model for it. It was a one off technology, not extensible.</p> <p>The Entity Framework is the ONLY way from Microsoft to build a LINQ Provider. The Entity Framework has turned out to be quite contreversial, but I think that is partly due to the fact that LINQ to SQL has a better programmer experience today. Entity Framework will catch and surpass LINQ to SQL because it is the ORM/Mapping tool of the future from Microsoft.</p> <p>EDIT - I just did a slightly more detailed write up about this on <a href="http://www.vistadb.net/blog/post/2008/10/31/Microsoft-killing-LINQ-to-SQL.aspx" rel="nofollow">my blog</a></p> <p>EDIT2 - IQueryable Provider - is NOT the same thing as a LINQ to SQL provider. You can write your own IQueryable Provider for anything you like. You get no designer support or model generation. There is no gui designer model that I know of for tying into LINQ to SQL model generation.</p> http://stackoverflow.com/questions/605813/entity-framework-conditional-foreign-key/1215130#1215130 1 Answer by Jason Short for Entity Framework: Conditional foreign key Jason Short 2009-07-31T22:13:32Z 2009-07-31T22:13:32Z <p>The only way you could accomplish what you wanted is to build a Trigger to handle the processing on the server side. You can't map FK's like that to multiple tables. But a trigger can handle that logic. Of course that would be totally outside EF... </p> <p>I would also recommend you build a separate table for each type. Simpler to maintain in the long run I think.</p> http://stackoverflow.com/questions/1191847/does-the-using-the-entity-framework-put-a-lot-of-pressure-on-memory-like-the-dat/1215115#1215115 2 Answer by Jason Short for Does the using the entity framework put a lot of pressure on memory, like the DataSet does? Jason Short 2009-07-31T22:05:21Z 2009-07-31T22:05:21Z <p>"Does the entity framework have a memory efficient pattern similar to the SqlDataReader?"</p> <p>No, the EF makes complete copies of objects in RAM similar to a DataSet and DataRelations, etc, but it keeps them in objects instead. It then also has to keep copies of each of the objects changes (Changesets). Each of those changes are then build up as SQL to update the database if you submit the changes back.</p> <p>SqlDataReader is a forward only lightweight reader to grab a single row at a time. EF is loading all your answers to the queries into object collections with change tracking on top of it.</p> <p>Is it suitable for your app? I don't know. If you need fast as possible and smallest amount of RAM then ADO.NET is the only way to go. Any abstraction placed on top of ADO.NET is going to add overhead, memory etc.</p> http://stackoverflow.com/questions/1210905/comparing-date-datetime-ine-entity-sql-where-clause/1215089#1215089 0 Answer by Jason Short for Comparing Date / DateTime ine Entity SQL Where clause... Jason Short 2009-07-31T21:59:39Z 2009-07-31T21:59:39Z <p>You will have to know the format that the user input the data. Take a look at the DateTime.Parse and ParseExact functions.</p> <p><a href="http://msdn.microsoft.com/en-us/library/w2sa9yss.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/w2sa9yss.aspx</a></p> <p>You can use them to parse any input string to a valid datetime if you know the format. There are some culture invariants as well.</p> <p>A good protection against this is to always format the date from a DateTimePicker, etc to use the long format ( YYYYMMDD HH:MM:SS ). There is a format string to tell .Net to do that, but I can't remember it right now.</p> <p>If you are accepting the strings from user input you will have to take the CurrentCulture into account (same link above has help).</p> http://stackoverflow.com/questions/1208761/use-of-non-company-approved-3rd-party-software-libraries/1208863#1208863 1 Answer by Jason Short for Use of Non-Company approved 3rd party software libraries Jason Short 2009-07-30T19:39:34Z 2009-07-30T19:39:34Z <p>Yes, I think it is unethical to use a control that your employee does not own.</p> <p>There are some complicated legal issues around this as well.</p> <p>By using a third party control you are opening the company to legal suits. If the control happens to be GPL you could be seriously damaging the company IP and get yourself in all sorts of trouble. </p> <p>But even if the control is free you are leaving the company open to issues that they did not agree to in the first place. Maybe they don't want that dependency, or maybe it won't run everywhere they company intends the product to run (things like Mono, cross platform, 64 bit, etc).</p> <p>Don't make corporate decisions for the company! That is a good way to get fired and sued. Make your case, pitch the ideas if you want, but if you are not allowed to make corporate decisions then don't do it!</p> http://stackoverflow.com/questions/921438/can-someone-explain-vistadb-please/1203358#1203358 0 Answer by Jason Short for Can Someone Explain VistaDB Please? Jason Short 2009-07-29T22:11:33Z 2009-07-29T22:11:33Z <p>You may also want to see this <a href="http://stackoverflow.com/questions/55273/what-are-the-advantages-of-vistadb">StackOverflow topic about VistaDB</a>.</p> <p>Nothing is faster than SQL Server for what it does. If you think SQL Server is too slow you are probably doing something wrong. It is incredibly fast. There is no way a 100% managed engine is going to be faster than SQL Server on everything.</p> <p>Lighter on resources - Yes</p> <p>Easier to deploy - Yes (xcopy deployment)</p> <p>Desktop database - Yes, you can use it for desktop development of applications. Some people also use it for multi user applications on a shared drive. Websites are another target where you can't install a service or don't want to pay extra for SQL Server access on the hosting account.</p> <p>Security - VistaDB runs in-process with your application. There is no concept of user security since you are loading it directly.</p> <p>Concurrency - Depends on your application. We support multiple processes access the same database, but some operations will still have locking issues you have to work with in your code. </p> http://stackoverflow.com/questions/1777140/how-to-make-plinq-to-spawn-more-concurrent-threads-in-net-4-0-beta-2/1777268#1777268 Comment by Jason Short on How to make PLINQ to spawn more concurrent threads in .NET 4.0 beta 2? Jason Short 2009-12-03T04:31:54Z 2009-12-03T04:31:54Z That and I think the runtime computes it based upon the resources at hand. IE an 8 core box does more threads and a 2 core box. http://stackoverflow.com/questions/1609894/how-to-reference-net-4-0-assembly-within-net-3-5-projects/1631084#1631084 Comment by Jason Short on How to reference .NET 4.0 assembly within .NET 3.5 projects Jason Short 2009-12-03T04:03:41Z 2009-12-03T04:03:41Z No, there is no cross process communication in .Net. You would have to implement your own unmanaged (COM) communication. http://stackoverflow.com/questions/1836885/what-technical-restrictions-might-prevent-ms-from-implementing-intellitrace-on-vs Comment by Jason Short on What technical restrictions might prevent MS from implementing IntelliTrace on VS 2010 64-bit? Jason Short 2009-12-03T00:42:56Z 2009-12-03T00:42:56Z I shall paraphrase what they said: &quot;It's hard&quot; http://stackoverflow.com/questions/1828254/is-there-any-good-orm-for-vistadb/1830878#1830878 Comment by Jason Short on Is there any good ORM for VistaDB? Jason Short 2009-12-03T00:41:53Z 2009-12-03T00:41:53Z I have not used Lightspeed. You should post a link to it for others to find as well. http://stackoverflow.com/questions/55273/what-are-the-advantages-of-vistadb/55397#55397 Comment by Jason Short on What are the advantages of VistaDB Jason Short 2009-11-27T06:42:26Z 2009-11-27T06:42:26Z Not CLR Triggers or Triggers that can run managed code AFAIK http://stackoverflow.com/questions/111196/local-database-with-silverlight/1364972#1364972 Comment by Jason Short on Local Database with Silverlight Jason Short 2009-11-27T06:35:16Z 2009-11-27T06:35:16Z Except it is not the ADO.NET implementation, and is not actually usable. It is a rough port of the C-Lib to C#. So if you want to write to that interface in .Net and do all the mapping yourself it might work, but the last time I looked at the port it doesn't work and probably can't without major rework to support isolated storage concepts. http://stackoverflow.com/questions/619176/are-table-indexes-getting-replicated-to-my-sqlce-database/1801048#1801048 Comment by Jason Short on Are table indexes getting replicated to my sqlce database? Jason Short 2009-11-27T06:30:29Z 2009-11-27T06:30:29Z We just finished implementing our VistaDB sync providers and reflected the SQLCE providers for sync to see what they were doing. We ran into the exact issue. Peer to Peer does not build all the indexes on the table because it fails to call FillSchema. I will be doing blog posts about it when we get ready to ship our sync provider (4.1 version should include it) http://stackoverflow.com/questions/1626790/sql-server-ce-rollback-does-not-undo-delete/1626868#1626868 Comment by Jason Short on SQL Server CE rollback does not undo delete. Jason Short 2009-11-26T01:17:25Z 2009-11-26T01:17:25Z Correct - transactions on the connection are not automatically enlisted by all commands being run against that connection. You have to tell the command to participate in the transaction. http://stackoverflow.com/questions/1539277/bulk-insert-in-sqlce/1539523#1539523 Comment by Jason Short on Bulk Insert In SQLCE Jason Short 2009-11-26T01:12:40Z 2009-11-26T01:12:40Z That is sort of funny though because the MSDN docs state that TableDirect is ONLY supposed to be used by OLEDB providers. Do as I say, not as I do... &quot;TableDirect is only supported by the .NET Framework Data Provider for OLE DB&quot; http://stackoverflow.com/questions/1104082/programmatically-create-a-sqlce-table-from-datatable/1119348#1119348 Comment by Jason Short on Programmatically create a SqlCE table from DataTable Jason Short 2009-11-26T00:17:45Z 2009-11-26T00:17:45Z You are also now creating tables without their identity column settings, etc. All that is available through a FillSchema call though, so you can build it up dynamically. http://stackoverflow.com/questions/1104082/programmatically-create-a-sqlce-table-from-datatable/1104248#1104248 Comment by Jason Short on Programmatically create a SqlCE table from DataTable Jason Short 2009-11-26T00:15:50Z 2009-11-26T00:15:50Z Maybe because you said &quot;insert magic&quot; and then said that you don't know how to do said magic... I would downvote because you give advice without knowing how to do it. http://stackoverflow.com/questions/1795074/inserting-1000s-of-rows-to-sql-table-using-ssms Comment by Jason Short on Inserting 1000s of rows to SQL table using SSMS Jason Short 2009-11-26T00:11:28Z 2009-11-26T00:11:28Z Yep, seen that happen many times. See my answer below for how I have fixed it. http://stackoverflow.com/questions/1795074/inserting-1000s-of-rows-to-sql-table-using-ssms/1795134#1795134 Comment by Jason Short on Inserting 1000s of rows to SQL table using SSMS Jason Short 2009-11-26T00:06:47Z 2009-11-26T00:06:47Z His error is correct. The SQL Management Studio (SSMS) is running out of memory and does run .Net code within it. http://stackoverflow.com/questions/545724/using-c-net-librarires-to-check-for-imap-messages-from-gmail-servers/731074#731074 Comment by Jason Short on using c# .net librarires to check for IMAP messages from gmail servers Jason Short 2009-11-19T14:33:13Z 2009-11-19T14:33:13Z It appears he has changed his syntax. Instead of calling Authenticate you now call client.Login(_username, _password); And the FetchMessages has been replaced with a Fetch that works very differently. The Lumisoft code is fantastic though, but could use more samples of how to use it. http://stackoverflow.com/questions/1715439/best-logging-library-for-net/1715922#1715922 Comment by Jason Short on Best logging library for .NET? Jason Short 2009-11-11T22:17:44Z 2009-11-11T22:17:44Z I've used Gibraltar and the tools are first rate. Logging is the easy part, now try to use that data in a clear manner. That is where Gibraltar will help you a lot.