active questions tagged framework - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T11:55:59Zhttp://stackoverflow.com/feeds/tag/frameworkhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/838724/barcode-framework-for-the-iphone4barcode framework for the iphone?Stefan2009-05-08T08:05:48Z2009-12-11T10:06:12Z
<p>Is there already a barcode framework for the iphone?</p>
http://stackoverflow.com/questions/1572446/java-based-web-framework-alternatives4Java based web framework alternativesteto2009-10-15T13:39:27Z2009-12-11T08:01:13Z
<p>Hello,</p>
<p>I'm trying to pick a web framework that is Java based to start a new project and so far I'm having a bit of trouble deciding. I have been using plain GWT and I have to say that is very good, the architecture, the APIs and the docs are all very good, but I lack the knowledge to apply CSS and prettify my widgets, so I need something that comes with that included, Gwt Ext is ruled out as is not purely based in GWT, Ext Gwt is good but they drift away totally from GWT and implement everything again (data stores, events, etc) and there is also the license. I found out about Vaadin and it seems pretty good, besides it improves on the weak side of GWT (in my opinion) which is that everything is client side, pre rendered (the whole website is on the client side, even if, lets say, your cient has not yet authenticated). The only thing about Vaadin is that I don't see a lot of widespread usage, maybe is very recent, so I can't get a lot of opinions.</p>
<p>Any solutions proposed don't have to be based in GWT, is just that it integrates JS and JAVA in a great way, abstracting from me, a Java developer, all the JS goodness that I would need to learn in order to develop a web app.</p>
<p>So, basically: Java developer needs opinion on different Java based web frameworks. Requirements: no deep knowledge of CSS or JS required to use it (basic knowledge is of course, always required, but I don't want to be tinkering with the internals too much), nice, acceptable looking widgets already included, ability to use Java development tools/techniques (Eclipse, Netbeans etc). </p>
<p>As you can see GWT fits almost all of my requirements and that was my first choice, but now I would like to get more feedback regarding other options. Thanks in advance, teto.</p>
http://stackoverflow.com/questions/1442374/ajax-framework-should-i-go-for-extjs-or-raxan0ajax framework should I go for extjs or raxan?i need help2009-09-18T02:55:21Z2009-12-11T02:12:16Z
<p>jquery- Definitely a great choice for DOM manipulation, and have lot of libraries.</p>
<p>extjs 3.0- <a href="http://www.extjs.com" rel="nofollow">http://www.extjs.com</a>
they mentioned many big companies also using it. I seen their interface all great!</p>
<p>raxan framework- <a href="http://raxanpdi.com" rel="nofollow">http://raxanpdi.com</a>
Guys, any idea on this? Sounds good too.</p>
<p>YUI? I heard that YUI is less troublesome than extjs, more stable in event calling and better documentation.</p>
<p>I'm going to develop a php application.</p>
<p>Definitely jquery is a must.</p>
<p>Regarding extjs and raxan, guys what do you think?</p>
<p>Can give me some comment on its
1. performance
2. code flexibility
3. whether it's your favorite, and whether it will become a trend in future?
4. whether can easily combine with cakephp?</p>
<p>Jquery is becoming a trend now, as you know.</p>
http://stackoverflow.com/questions/1484347/java-max-min-value-in-an-array1Java: Max/min value in an array?Rosarch2009-09-27T20:07:56Z2009-12-10T20:32:33Z
<p>It's trivial to write a function to determine the min/max value in an array, such as:</p>
<pre><code>/**
*
* @param chars
* @return the max value in the array of chars
*/
private static int maxValue(char[] chars) {
int max = chars[0];
for (int ktr = 0; ktr < chars.length; ktr++) {
if (chars[ktr] > max) {
max = chars[ktr];
}
}
return max;
}
</code></pre>
<p>but isn't this already done somewhere?</p>
http://stackoverflow.com/questions/1871574/schools-interoperability-framework-sif-integration-into-application0Schools Interoperability Framework (SIF) integration into applicationTyler2009-12-09T04:28:47Z2009-12-10T15:58:51Z
<p>Does anyone know of any good resources that will help me get started with understanding SIF and how to integrate it into a web-based application?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1880096/dotnet-compact-framework-tab-order0Dotnet Compact Framework- Tab orderDJ2009-12-10T10:32:39Z2009-12-10T10:34:03Z
<p>Hi all,</p>
<p>In Compact framework application form,If we do tab-out from a datagrid's any cell to some controls outside the grid,next time when grid get focus ,it will point the old cell . Any idea on setting it to datagrids first cell?</p>
http://stackoverflow.com/questions/1879148/making-headers-public-in-xcode-framework1Making headers public in Xcode Frameworkjonnyv2009-12-10T07:03:05Z2009-12-10T07:47:28Z
<p>Is there a <strong>fast</strong> way to make headers public when setting up a Framework in Xcode? I always have to click through one by one, changing each one from private to public. This irks me. Thanks.</p>
http://stackoverflow.com/questions/1872472/haptic-feedback-in-compact-framework-2-running-on-windows-mobile-6-50Haptic feedback in Compact Framework 2 running on Windows Mobile 6.5Stuart2009-12-09T08:48:32Z2009-12-09T08:48:32Z
<p>I'm writing a Compact Framework 2.0 application on Windows Mobile 6.5</p>
<p>Several of the built-in controls (e.g. button) produce haptic feedback - small vibrations - when clicked.</p>
<p>Is there any way the same thing can be achieved in custom controls?</p>
<p>I'm aware of some platform specific APIs for this - but I'm looking for a generic WM6.5 API to call if there is one.</p>
http://stackoverflow.com/questions/1850739/how-to-map-a-entity-data-model-conceptual-model-property-to-a-storage-model-colum0How to map a Entity Data Model conceptual model property to a storage model column using the "Serialized LOB" pattern?codekaizen2009-12-05T01:23:41Z2009-12-08T21:52:58Z
<p>I have a conceptual model in EDM where one of the entities has a property which is essentially a big value object whose properties aren't really useful as columns in the datamodel. I'd like to apply the <a href="http://www.martinfowler.com/eaaCatalog/serializedLOB.html" rel="nofollow">Serialized LOB</a> pattern to it so that I can fit it into a 192 byte binary column.</p>
<p>How do I map this in the EDM v4? Is it even possible at this time? </p>
<p>Actually, is it possible in <em>any</em> ORM?</p>
http://stackoverflow.com/questions/841525/why-a-very-good-php-framework-qcodo-or-qcubed-its-branch-is-so-unpopular3Why a very good PHP framework - Qcodo (or Qcubed - its branch) - is so unpopular?Pawel2009-05-08T19:57:52Z2009-12-08T21:15:59Z
<p>I am wondering why this framework (QCodo) is almost forgotten and totally unpopular. </p>
<p>I've started using it a few years ago and it is the <strong>only</strong> thing that keeps me with PHP. Yeah ... its development is stuck (that's why there is now more active branch <a href="http://qcu.be" rel="nofollow">Qcubed</a>) but it is still very good piece of software.</p>
<p>Its main advantages:</p>
<ul>
<li>Event driven (something like asp.net) <strong>no spaghetti code</strong></li>
<li>Powerful code generation</li>
<li>good ORM</li>
<li>follows DRY</li>
<li>very simple AJAX support</li>
<li>is fun to write</li>
</ul>
<p>Since then I wanted to be trendy and checked Django but I cannot write normal request-based web application (it just doesn't feel right).</p>
<p>Don't believe? chess.com is written with it and surely there are plenty others.</p>
<p>My 2 questions are:</p>
<ol>
<li>Have you heard of it (PHP people)?</li>
<li>If you are using it what is your opinion about it (show us examples of your work)</li>
</ol>
<p>Thanks</p>
http://stackoverflow.com/questions/1869519/net-framework-object-creation-constructor-vs-factory2.net framework - object creation - constructor vs factory Steve2009-12-08T20:10:20Z2009-12-08T21:12:52Z
<p>Below is an article about .net framework's use of patterns. I'm not sure I understand the bolded part in the excerpt below. Is it implying if you change the details of creating the object, you (might) change the constructor arguments?</p>
<blockquote>
<p>There are many cases in the Framework where you
can obtain a new instance of a struct or class
without calling its constructor yourself. The
System.Convert class contains a host of static
methods that work like this. To convert an integer
to a Boolean, for example, you can call
Convert.ToBoolean and pass in the integer. The
return value of this method call is a new Boolean
set to "true" if the integer was non-zero and
"false" otherwise. The Convert class creates the
Boolean for you with the correct value. Other type
conversion methods work similarly. The Parse
methods on Int32 and Double return new instances
of those objects set to the appropriate value
given only a string.</p>
<p>This strategy for creating new object instances is
known as a Factory pattern. Rather than invoking
the object's constructor, you can ask the object
factory to create the instance for you. That way,
the factory class can hide the complexity of
object creation (like how to parse a Double out of
a string). If you wanted to change the details of
creating the object, you'd only have to change the
factory itself; <strong>you would not have to change every
single place in the code where the constructor is
called.</strong></p>
</blockquote>
<p>From: <a href="http://msdn.microsoft.com/en-us/magazine/cc188707.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc188707.aspx</a>.</p>
http://stackoverflow.com/questions/339404/caching-in-code-igniter0Caching in Code Igniterteamnxt2008-12-04T02:05:13Z2009-12-08T17:42:52Z
<p>I have read the documentation for the CI Caching but still don't understand much about it. What exactly does it do, and what is the use of caching a dynamic website?</p>
http://stackoverflow.com/questions/1575292/pantomime-and-mail-frameworks-cocoa0Pantomime and Mail Frameworks? - CocoaKevin2009-10-15T21:47:57Z2009-12-08T08:09:01Z
<p>Does the Pantomime Framework work for 10.5 or 10.6? Because when I look at the build error I get when compiling it says, it couldn't find the 10.4 sdk. If not, then does anyone know any other framework that works really well with 10.5 or 10.6, with an example? </p>
http://stackoverflow.com/questions/1842652/is-there-a-general-concrete-implementation-of-a-keyedcollection2Is there a general concrete implementation of a KeyedCollection?CodeSavvyGeek2009-12-03T20:23:40Z2009-12-07T21:44:23Z
<p>The <a href="http://msdn.microsoft.com/en-us/library/ms132439.aspx" rel="nofollow">System.Collections.ObjectModel.KeyedCollection</a> class is a very useful alternative to <a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow">System.Collections.Generic.Dictionary</a>, especially when the key data is part of the object being stored or you want to be able to enumerate the items in order. Unfortunately, the class is abstract, and I am unable to find a general concrete implementation in the core .NET framework.</p>
<p>The <a href="http://rads.stackoverflow.com/amzn/click/0321545613" rel="nofollow">Framework Design Guidlines</a> book indicates that a concrete implementation <em>should</em> be provided for abstract types (section 4.4 Abstract Class Design). Why would the framework designers leave out a general concrete implementation of such a useful class, especially when it could be provided by simply exposing a constructor that accepts and stores a <a href="http://msdn.microsoft.com/en-us/library/kt456a2y.aspx" rel="nofollow">Converter</a> from the item to its key:</p>
<pre><code>public class ConcreteKeyedCollection<TKey, TItem> : KeyedCollection<TKey, TItem>
{
private Converter<TItem, TKey> getKeyForItem = null;
public GenericKeyedCollection(Converter<TItem, TKey> getKeyForItem)
{
if (getKeyForItem == null) { throw new ArgumentNullException("getKeyForItem"); }
this.getKeyForItem = getKeyForItem;
}
protected override TKey GetKeyForItem(TItem item)
{
return this.getKeyForItem(item);
}
}
</code></pre>
http://stackoverflow.com/questions/632391/state-machine-frameworks-for-net2State Machine Frameworks for .NETAndy White2009-03-10T21:40:15Z2009-12-07T20:42:05Z
<p>We have a system at my work that is basically a message-driven state machine. It takes in a variety of types of messages, looks up some context/state based on the message, then decides what to do, based on the message and the current state. Normally the result is a message being sent out of the system.</p>
<p>Are there any good open-source frameworks for implementing a state machine in .NET? I've looked into the latest release of Windows Workflow, and it seems like it would be a good option; however, I have some concerns about the default persistence mechanisms (we need to report off the state transition data), testability, and the fact that the WF team is re-architecting the framework as we speak (supposedly).</p>
<p>Instead of WF, I'm thinking of trying to implement a plain-old GoF "State" pattern, and using Spring.NET to wire everything together. Is there anything out there that already does this, or something similar?</p>
http://stackoverflow.com/questions/1862094/querying-nn-relationship-on-entity-framework-count-and-groupby-1Querying n:n relationship on Entity Framework + count and groupbyterra2009-12-07T18:54:24Z2009-12-07T18:54:24Z
<p>Hi everyone! I have the following database model:</p>
<pre><code>Post
--------------
PostId
[Other fields]
...
Category
--------------
CategoryId
Description
[Other fields]
...
PostCategory
--------------
PostId
CategoryId
[NO other fields]
</code></pre>
<ul>
<li>Post 1:n PostCategory n:1 Category in
the SQL diagram</li>
<li>Post n:n Category in
the Entity Framework model</li>
</ul>
<p>How to write a query using LINQ on Entity Framework model above which performs the same following results thats T-Sql:</p>
<pre><code>SELECT pc.CategoryId, c.Description, COUNT(pc.CategoryId)
FROM PostCategory pc
INNER JOIN Category C on pc.CategoryId = c.CategoryId
GROUP BY pc.CategoryId, Description
</code></pre>
http://stackoverflow.com/questions/1860705/on-declarative-programming-in-c4On declarative programming in C++xtofl2009-12-07T15:30:02Z2009-12-07T17:02:53Z
<p>Often I face the problem of mapping the parameter space of one API onto the parameter space of another one. Often I see this solved by nested nested nested ... switch statements.</p>
<p>And I was wondering if there would happen to be a library or a technique that allows you to 'declare' the mapping instead of 'program' it.</p>
<p>A trivial example would consist of merging the values of two enumerates into one:</p>
<pre><code>namespace sourceAPI {
struct A { typedef e { A1, A2, A3 } };
struct B { typedef e { B1, B2 } };
}
namespace targetAPI {
struct AB { typedef e { A1B1, A1B2, A2B1, A2B2, A3B1, A3B2 } };
}
</code></pre>
<p>In which the mapping is often done like</p>
<pre><code>switch( a ){
case( A::A1 ): switch( b ) {
case( B::B1 ): return A1B1;
case( B::B2 ): return A1B2;
....
}
</code></pre>
<p>And this mapping still needs a 'reverse' switch, too.</p>
<p>But I would rather like something 'dense' like</p>
<pre><code>declare( source( A::A1, B::B1 ), target( AB::A1B1 ) );
declare( source( A::A1, B::B2 ), target( AB::A1B2 ) );
....
</code></pre>
<p>Has anyone seen such a technique or framework or library?</p>
http://stackoverflow.com/questions/1860081/who-here-is-working-with-java-jsp-as-web-development-can-you-recommend-it3Who here is working with java/jsp as web development can you recommend it ? [closed]unknown (google)2009-12-07T13:46:22Z2009-12-07T16:26:45Z
<p>Hello all </p>
<p>I am now in the process of choosing framework for our web application. I am coming from java/c++ background and built web front ends based on java, but for inner network applications ( not public internet ). I would like to hear what do you think about using java as framework for building web application for the public web. good/bad/what ever ... </p>
http://stackoverflow.com/questions/1860893/why-so-many-individual-system-web-dlls1Why so many individual System.Web.* DLLs?toasteroven2009-12-07T15:56:25Z2009-12-07T16:08:55Z
<p>I've been thinking about ways to refactor a fairly expansive class/utility library I have, and one thing I think I want to do is split off any higher-level helper utilities that introduce new dependencies. I read some previous questions here, and one that I particularly noticed was a comment about how Microsoft freely uses namespaces across DLLs. The example given was <code>System.Web</code> - it's in the base framework, but there's also a <code>System.Web.dll</code> that adds more functionality to the namespace if you want it.</p>
<p>I also noticed several other <code>System.Web.*</code> DLLs available, and I was wondering if there's a reason why they wouldn't be combined into a single DLL. Could it be that they have their own individual dependencies and Microsoft (like me) wanted to separate assemblies along those lines? Or is it for easier maintenance? Something else entirely?</p>
http://stackoverflow.com/questions/1843276/any-php-mvc-framework-planning-to-use-5-3-features4Any PHP MVC framework planning to use 5.3 features?alexandrul2009-12-03T22:05:08Z2009-12-07T07:18:14Z
<p>I would like to get started with PHP, and 5.3 release seems to bring many nice features (namespaces, lambda functions, and many others).</p>
<p>I have found some MVC frameworks, and some of them support only PHP 5:</p>
<ul>
<li><a href="http://www.phpframeworks.com/" rel="nofollow">PHP Frameworks</a></li>
<li><a href="http://www.phpwact.org/php/mvc%5Fframeworks" rel="nofollow">PHP MVC Frameworks</a></li>
<li><a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" rel="nofollow">Model–view–controller</a> on Wikipedia</li>
</ul>
<p>but can anyone recommend one of those MVC frameworks that plans to actively use PHP 5.3 features, not just being compatible with PHP 5.3?</p>
<p><strong>Update</strong></p>
<p>Results so far:</p>
<ul>
<li><a href="http://framework.zend.com/wiki/display/ZFDEV2/Zend+Framework+2.0+Roadmap" rel="nofollow">Zend Framework 2.0</a> (in development)</li>
<li><a href="http://rad-dev.org/lithium/wiki" rel="nofollow">Lithium</a> (in development, based on CakePHP)</li>
<li><a href="http://www.symfony-project.org/" rel="nofollow">Symfony</a> (in development)</li>
<li><a href="http://flow3.typo3.org/download/" rel="nofollow">FLOW3</a> (in development, alpha)</li>
</ul>
http://stackoverflow.com/questions/1857137/how-to-have-fixed-height-divs-using-960-gs0how to have fixed height divs using 960.gs?unknown (yahoo)2009-12-07T00:29:30Z2009-12-07T00:33:57Z
<p>Hi everyone,</p>
<p>I am using 960.gs to do the layout of a simple page, but am having a hard time enforcing a maximum height for the DIVs I am using. Consider the following:</p>
<pre><code> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" media="all" href="reset.css" />
<link rel="stylesheet" type="text/css" media="all" href="text.css" />
<link rel="stylesheet" type="text/css" media="all" href="960.css" />
</head>
<body>
<div id="topContainer" class="container_12">
<div style="height:200; overflow:hidden" class="grid_10">
<!-- lots of text or a large image-->
</div>
<div class="grid_2"> <!-- rhs col--> </div>
</div>
</code></pre>
<p>
</p>
<p>How can I enforce a specific height for this div? I have tried setting the "height" property on the top-level container, but that didn't help, either.</p>
<p>Thank you for any help!</p>
http://stackoverflow.com/questions/1853556/php-mvc-framework-design1PHP MVC Framework Designdaemonfire3002009-12-05T21:37:00Z2009-12-06T22:03:12Z
<p>Hi there,</p>
<p>I currently ran into a problem I can not really solve by myself:</p>
<p>I ve started to code a "small" framework (browsergame-framework), which follows the MVC pattern in some way.</p>
<p>Now I have my index, bootstrap, db adapter, dispatcher, wrapper, but I do not really know "how" to link them.
I coded their methods etc. but I do not know how to design them to work like an engine.</p>
<p>And the next problem are my controllers, I do not know how to "link" them so that they easily can access the whole framework....
Yes, it is confusing, that is why I need your help, some generic scheme of "how a framework program flow" should like would be very nice.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1852330/creating-variables-using-globals1Creating variables using $GLOBALSdaemonfire3002009-12-05T14:27:36Z2009-12-05T14:37:19Z
<p>Hi there,</p>
<p>I am currently working on a php framework, which is in some cases structured like the ZendFramework.
It has MVC etc.
<em>I did not found any equal matching to my problem.</em></p>
<p>My "problem" is I have a variable number of classes (models, controller), e.g.
http_handler.
Now I have that much classes I can not set them all manualy into variables.</p>
<p>Can I use $GLOBALS to set a $variableVar?</p>
<pre><code>foreach($classes as $class)
{
include_once($class . '.php');
$GLOBALS[$class] = new $class;
}
</code></pre>
<p>Does this create a new variable which will be accessable through the whole code?
Example:</p>
<pre><code>//... code
$http_handler->sendRequest($someArgs);
//... code
</code></pre>
http://stackoverflow.com/questions/1822518/current-state-of-erlang-web-development-frameworks-template-languages3Current state of Erlang web development? Frameworks, Template languagespommonico2009-11-30T21:29:07Z2009-12-05T00:55:51Z
<p>Django is to Python as Rails is to Ruby. What is the current front-runner for Erlang? </p>
<p>Recent Erlang web activity has resulted in many new frameworks but they are all still moving targets. ErlyWeb is very far along but now seems to be dead. </p>
<p>If you were to <strong>invest significant capital</strong> into a new web product (i.e. not a hobby, you use your own money and you use other's investment in you with expectation of payback), would you choose Erlang as a web platform? If so, what framework and technologies would you choose? </p>
http://stackoverflow.com/questions/1847734/what-php-framework-is-most-similar-to-apache-wicket0What PHP framework is most similar to Apache Wicket?Kamil Szot2009-12-04T15:33:27Z2009-12-04T15:33:27Z
<p>Feature I'm looking for is being component based but not event driven. </p>
<p>I also like the idea of defining component in his parent code but describing its placement and some visual aspects in the template of his parent.</p>
http://stackoverflow.com/questions/1845962/adding-property-fora-particular-column-in-a-particular-row-in-datagrid-c-net0Adding property fora particular Column in a particular row in Datagrid C#.netDJ2009-12-04T09:54:31Z2009-12-04T10:00:49Z
<p>Hi all,
I have a requirement like , In the datagrid i can have several checkbox columns. I need to display a warning message for a particular check box , and for some row only.</p>
<p>I did code for warning message for that particular check box by setting property for the columns.. Now i m not sure how to apply this for some rows alone. These rows are identifed by some business requirements.
Any idea?</p>
http://stackoverflow.com/questions/1761604/how-to-limit-upload-file-size-in-wicket0How to limit upload file size in WicketJuha Syrjälä2009-11-19T07:52:13Z2009-12-04T07:50:41Z
<p>How to limit file size in uploads in <a href="http://wicket.apache.org/" rel="nofollow">Apache Wicket</a> version 1.4?</p>
<p>I am using <a href="http://wicket.apache.org/docs/1.4/org/apache/wicket/markup/html/form/upload/FileUploadField.html" rel="nofollow">FileUploadField</a> to handle upload with normal form submit without any Ajax stuff. Is it enough to use <a href="http://wicket.apache.org/docs/1.4/org/apache/wicket/markup/html/form/Form.html#getMaxSize()" rel="nofollow">Form.setMaxSize()</a> to limit the size of uploaded file? </p>
<p>If too large file is uploaded, the browser will upload the whole file and Wicket will create validation error message with key <code>[form-id].uploadTooLarge</code>. </p>
<p>But how Wicket internally handles this situation, creating temporary files etc?</p>
<p>I'd like to prevent a case where user uploads file of several GBs that doesn't fit to memory or disk while Wicket handles the request.</p>
http://stackoverflow.com/questions/1844331/erlang-front-end-admin-panel1Erlang Front-End Admin Panelunknown (google)2009-12-04T01:33:10Z2009-12-04T01:33:10Z
<p>We're looking for a framework in which we can assign multiple roles to different users and allow those users to in turn manipulate certain data (based on their role). We have an ejabberd backend and a Mochiweb (BeepBeep framework) front end, and the nodes are connected so Mochiweb can manipulate ejabberd's mnesia tables. </p>
<p>Does a direct solution exist? If not would anyone recommend Ruby on Rails? (and which Rails app if there is one should we use?) </p>
<p>Lastly, if none exist, where's a good place to find some solid Erlang programmers for us to hire for this job? </p>
<p>Thanks in advance. </p>
http://stackoverflow.com/questions/198223/install-net-framework-2-0-on-embedded-xp-win-xpe0Install .net framework 2.0 on Embedded XP (Win XPE)Davesw2008-10-13T16:44:22Z2009-12-03T19:56:31Z
<p>I'm trying to install the .Net framework version 2.0 on embedded Windows XP SP2 (aka XPE).</p>
<p>I'm using the XPE specific version of the installer from Microsoft:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=c4837dad-5719-4b63-8752-cb0a65802329&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=c4837dad-5719-4b63-8752-cb0a65802329&displaylang=en</a></p>
<p>When the installation starts it fails with the following error:</p>
<p>QFE Installer -- Error
Cannot connect to the database - please check the database</p>
<p>How can I get .Net 2.0 installed on SPE?</p>
http://stackoverflow.com/questions/1816600/saving-a-single-entity-instead-of-the-entire-context-revisited0Saving a single entity instead of the entire context - revisitednite2009-11-29T20:02:34Z2009-12-03T10:48:53Z
<p>I’m looking for a way to have fine grained control over what is saved using Entity Framework, rather than the whole ObjectContext.SaveChanges(). My scenario is pretty straight forward, and I’m quite amazed not catered for in EF – pretty basic in NHibernate and all other data access paradigms I’ve seen. I’m generating a bunch of data (in a WPF UI) and allowing the user to fine tune what is proposed and choose what is actually committed to the database. For the proposed entities I’m:</p>
<ol>
<li>getting a bunch of reference entities (eg languages) via my objectcontext, </li>
<li>creating the proposed entities and assigning these reference entities to them (as navigation properties), so by virtue of their relationship to the reference entities they’re implicitly added to the objectconext </li>
<li>Trying to create & save individual entites based on the proposed entities. </li>
</ol>
<p>I figure this should be really simple & trivial but everything I’ve tried I’ve hit a brick wall, either I set up another objectcontext & add just the entity I need (it then tries to add the whole graph and fails as it’s on another objectcontext). I’ve tried MergeOptions = NoTracking on my reference entities to try to get the Attach/AddObject not to navigate through these to create a graph, no avail. I've removed the navigation properties from the reference entities. I've tried AcceptAllChanges, that works but pretty useless in practice as I do still want to track & save other entities. In a simple test, I can create 2 of my proposed entities, AddObject the one I want to save and then Detach the one I dont then call SaveChanges, this works but again not great in practice. Following are a few links to some of the nifty ideas which in the end don’t help in the end but illustrate the complexity of EF for something so simple. I’m really looking for a SaveSingle/SaveAtomic method, and think it’s a pretty reasonable & basic ask for any DAL, letalone a cutting edge ORM.</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1301460/saving-a-single-entity-instead-of-the-entire-context">http://stackoverflow.com/questions/1301460/saving-a-single-entity-instead-of-the-entire-context</a></li>
<li>www.codeproject.com/KB/architecture/attachobjectgraph.aspx?fid=1534536&df=90&mpp=25&noise=3&sort=Position&view=Quick&select=3071122&fr=1</li>
<li>bernhardelbl.spaces.live.com/blog/cns!DB54AE2C5D84DB78!238.entry</li>
</ul>