SQL to Linq Expression? [closed] - sql-server

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Does anyone know of a tool to take a T-SQL query and convert it into a LINQtoSQL query?

I'm sorry that I don't know of any tools to do this. If your problem is that you just don't know Linq well enough, you may want to consider this tool. It will help you learn Linq and it's free (but not open source).

Because of the way LINQ handles joins, that is a non-trivial problem. I actually tried in the past, but I just couldn't get the semantics right.
(Maybe I will try again using OSLO and MGrammar. Having a decent replacement for LEX and YACC will go a long way.)

Related

write my own delta compression? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Is there any reason that I absolutely should not write my own delta compression library (in C)? I'm working on proprietary project and cannot include any GPL'd code (and most others in fact).Being not an expert in binary data compression, I'm wondering if I do go this way, where should I start? All data involved is highly patterned binary with roughly the same length (~100K).
Sorry for the rather vague question.. Thanks in advance for any insight
Zlib is freely available and reusable, even in proprietary software. (Here is the license.) There is no reason to try and recreate it.

Database normalization made easy? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Is there any easy resource available online or a book which would allow a complete newbie how the database normalization process works and what one should do to perform the transformations on a given database leading it from 1NF to 5NF through all the in-between?
From my research, it seems that the Wikipedia article seems to be the closest to what I'm looking for but is there anything even easier?
This highly depends upon your taste. But I have found that the course in class2go offered by Stanford is quite good. It has a fairly good explanation of normalization up until NF4. For a complete newbie I think this would be quite useful.
You have to sign up but the material is supposed to be there:
http://class2go.stanford.edu/db/Winter2013
Also have you seen this?
http://www.bkent.net/Doc/simple5.htm

Good Database Design Tools? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Does anyone know of a good web-based GUI I could use for database design? It is going painfully slow in Photoshop.
You can use MySQL Workbench to do this. There are many web-based apps as well. http://wb.mysql.com/
Try this web-based designer
Just had occasion to use this earlier today: http://www.dbvis.com/
Java/uses JDBC drivers so widely compatible
Produces reasonably pretty relationship diagrams
The free version is still pretty capable, and the cost is eminently reasonable
EDIT: Ah, not web-based, but...somethings you really can't fit into that box very well.

Recommend a free, universal database browser? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
This can be community wiki.
I'm looking for a simple, multi-platform, free database browser (ODBC,etc). This is for those times when I want to interface with a database, and just need a simple way to quickly see what the heck is in it. Doesn't need to support any vendor-specific features.
Too much junk out there and I don't want to play with these things all day. What do you use?
I like SqlDbx - the personal edition is free. It supports most of the major databases, and the built in intellisense is useful for queries.
Dbvisualizer has a free version http://www.dbvis.com/products/dbvis/download/

Good DataGridView tutorial [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I'm writing a windows C# application which I wish to use data grid views, but unable to find a good tutorial on to take complete control of the datagrid eg: add columns, add data etc.
I like some of the tips provided here
You can take a look here: http://msdn2.microsoft.com/en-us/library/k39d6s23.aspx
But the best one might be this: http://www.macoratti.net/08/08/c_pdgv1.htm
I think you can get the idea from the code, since the comments are in portuguese (you can try google translate).
I highly recommend using an MVC/P pattern for implementing DataGridView in Winforms - it makes life a lot easier in the long run, even though it may seem a lot of work to do up front.
Selecting a MVC/MVP Implementation for a Winforms Project

Resources