User Odd - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T12:46:50Zhttp://stackoverflow.com/feeds/user/11908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1878400/entity-framework-in-a-n-tiered-architecture-best-practices-to-follow/1878437#18784372Answer by Odd for Entity Framework in a n tiered architecture - Best Practices to follow?Odd2009-12-10T03:17:53Z2009-12-10T03:17:53Z<p>I think that a common design pattern used with the entity framework is the Repository pattern, I won't provide links because a google search will return more than I can post here. It will help you hide your data access code behind an interface that allows for easier testing and separation of concerns.</p>
<p>I think that any choices you make in terms of best practice will depend heavily on the tools you're working with. if you're using standard ASP.NET then I would suggest going with the MVP pattern suggested in the article you linked to to help you separate your concerns and create testable code. However if you're using ASP.NET MVC then MVP is irrelevant as the framework helps separate your concerns for you. A little more background on your environment might help make recommendations.</p>
http://stackoverflow.com/questions/1803313/asp-net-mvc-partially-updating-model-from-view/1837749#18377491Answer by Odd for ASP.NET MVC - Partially updating model from viewOdd2009-12-03T04:58:35Z2009-12-03T04:58:35Z<p>Why don't you use TryUpdateModel with the form collection.</p>
<p>If your view is editing a person</p>
<pre><code>public class Person
{
public string ID { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string Address { get; set; }
}
</code></pre>
<p>And your view is only editing first name and last name, you can do this:</p>
<pre><code>public ActionResult Action(FormCollection form)
{
Person personToUpdate = Repository.GetPerson(form["ID"]);
TryUpdateModel<Person>(personToUpdate, form);
Repository.Update(personToUpdate)
return View();
}
</code></pre>
<p>That will only update Person with the items that a part of the form collection. If you don't want a field updated, don't submit it with the form. </p>
http://stackoverflow.com/questions/1837374/model-binding-and-display-trimmed-string-property/1837483#1837483-1Answer by Odd for Model binding and display trimmed string propertyOdd2009-12-03T03:39:23Z2009-12-03T03:39:23Z<p>I'm not aware of an extension method that does this, if someone else does then please let me know. </p>
<p>I create a simple HTML helper for fields that COULD be null.</p>
<pre><code>public static string TrimOrDefault(string value)
{
return (value == null ? "" : value.Trim());
}
</code></pre>
<p>And then in your code you can use </p>
<pre><code><%= Html.TextBox("FirstName", Helpers.TrimOrDefault(Model.FirstName)) %>
</code></pre>
<p>It's re-usable for future nullable fields and reads easily.</p>
http://stackoverflow.com/questions/98080/what-is-the-best-logging-solution-for-a-c-net-3-5-project39What is the best logging solution for a C# .NET 3.5 projectOdd2008-09-18T23:44:14Z2009-12-02T01:16:25Z
<p>Hi,</p>
<p>My team is about to start a new enterprise wide ASP.NET development project, quite possibly the largest undertaken by my department so far and the largest project that I've ever worked on. I'm looking for a good logging solution for the system. There are two questions I have if anyone knows the answer. </p>
<p>Firstly what logging tools are currently available and widely used?</p>
<p>Secondly, for an ASP.NET (probably MVC) enterprise applicaiton, which tool is most appropriate based on your experience?</p>
<p>So far I've used Log4Net almost exclusively for all my previous projects, it's a fantastic tool, however I would like to see if there is anything I've not used out there before I start a project of this magnitude or if there is any reason I would not want to use Log4Net for a project of this size.</p>
<p>Thanks
Daniel</p>
http://stackoverflow.com/questions/1801706/problems-with-asp-net-mvc-deployment/1801946#18019460Answer by Odd for Problems with ASP.NET MVC DeploymentOdd2009-11-26T06:48:58Z2009-11-26T06:48:58Z<p><a href="http://www.asp.net/Learn/mvc/tutorial-08-vb.aspx" rel="nofollow">This is the guide I used with IIS 6</a>, it should work just fine with IIS 5.</p>
http://stackoverflow.com/questions/1617107/entity-framework-partial-commit/1620047#16200470Answer by Odd for Entity Framework - partial commitOdd2009-10-25T04:53:57Z2009-10-25T04:53:57Z<p>My understanding is that commits in the entity framework are localised to the data context that the entity items are attached to. If you want to do a partial commit while you're working on some other data then you can create a new data context, load the un-related object you need, make the modification and submit on the new data context. Your original data context and object should remain untouched and uncomitted.</p>
http://stackoverflow.com/questions/1617463/create-dynamic-pages-in-asp-net-mvc/1620043#16200430Answer by Odd for Create Dynamic pages in asp.net mvcOdd2009-10-25T04:50:34Z2009-10-25T04:50:34Z<p>As long as your dynamic site supports javascript you could use restful web services and JSON results to retrieve your data with jQuery and Ajax. <a href="http://oddiandeveloper.blogspot.com/2008/11/asynchronous-data-loading-in-aspnet-mvc.html" rel="nofollow">Here's a link on asynchronous data loading using jQuery and json results that may help you here.</a></p>
http://stackoverflow.com/questions/1608399/asp-net-mvc-wildcard-mappings-iis-6-0-page-can-not-be-found/1610528#16105280Answer by Odd for ASP.Net MVC Wildcard Mappings IIS 6.0 - Page Can Not be FoundOdd2009-10-22T23:08:40Z2009-10-22T23:08:40Z<p>I've run ASP.NET MVC on a machine running multiple other sites, try the information int he following links as they helped me get setup correctly.</p>
<p><a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx</a>
<a href="http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/" rel="nofollow">http://blog.codeville.net/2008/07/04/options-for-deploying-aspnet-mvc-to-iis-6/</a></p>
http://stackoverflow.com/questions/1608837/is-it-a-bad-idea-to-do-asp-net-mvc-without-any-orm/1610517#16105170Answer by Odd for Is it a bad idea to do ASP.NET MVC without any ORM ?Odd2009-10-22T23:04:43Z2009-10-22T23:04:43Z<p>Model View Controller is a framework to help provider a clear separation of concerns between the tiers of an application. The Model can be any form you wish really. ORM is not always appropriate, if you have some other DAL in mind then use it. Direct data access with the repository pattern works well, this will help you hide the logic you do use to access your database and allow you to change it later down the track with much more ease.</p>
http://stackoverflow.com/questions/1551968/is-there-a-fast-way-to-get-rows-from-a-table-by-range-as-iqueryable-in-c-linq-to/1551981#15519810Answer by Odd for Is there a fast way to get rows from a table by range as IQueryable in C# LINQ to SQL?Odd2009-10-11T22:35:14Z2009-10-11T22:35:14Z<p>return (from t in table
select t).Skip(start).Take(end - start);</p>
http://stackoverflow.com/questions/155864/asp-net-mvc-problem-passing-parameters-to-the-controller9ASP.NET MVC - Problem passing parameters to the controllerOdd2008-10-01T01:38:11Z2009-10-11T18:44:28Z
<p>I have a controller with an action method as follows:</p>
<pre><code>public class InventoryController : Controller
{
public ActionResult ViewStockNext(int firstItem)
{
// Do some stuff
}
}
</code></pre>
<p>And when I run it I get an error stating:</p>
<blockquote>
<p>The parameters dictionary does not contain a valid value of type 'System.Int32' for parameter 'firstItem'. To make a parameter optional its type should either be a reference type or a Nullable type.</p>
</blockquote>
<p>I had it working at one point and I decided to try the function without parameters. Finding out that the controller was not persistant I put the parameter back in, now it refuses to recognise the parameter when I call the method.</p>
<p>I'm using this url syntax to call the action:</p>
<blockquote>
<p><a href="http://localhost:2316/Inventory/ViewStockNext/11" rel="nofollow">http://localhost:2316/Inventory/ViewStockNext/11</a></p>
</blockquote>
<p>Any ideas why I would get this error and what I need to do to fix it? I've tried adding another method that takes an integer to the class it it also fails with the same reason. I've tried adding one that takes a string, and the string is set to null. I've tried adding one without parameters and that works fine, but of course it won't suit my needs.</p>
<p>Any help would be appreciated.</p>
<p>Thanks
Daniel</p>
http://stackoverflow.com/questions/1541777/can-you-remove-an-item-from-a-list-whilst-iterating-through-it-in-c/1541801#15418011Answer by Odd for Can you remove an item from a List<> whilst iterating through it in C#Odd2009-10-09T04:31:09Z2009-10-09T04:31:09Z<p><a href="http://oddiandeveloper.blogspot.com/2009/01/linq-to-entities-and-collection-was.html" rel="nofollow">I've come across this problem before and blogged about it here</a>.</p>
<p>Short version is that you can create an extension method called RemoveIf:</p>
<pre><code>public void RemoveIf<T>(ICollection<T> collection, Predicate<T> match)
{
List<T> removed = new List<T>();
foreach (T item in collection)
{
if (match(item))
{
removed.Add(item);
}
}
foreach (T item in removed)
{
collection.Remove(item);
}
removed.Clear();
}
</code></pre>
<p>And then just call it with your delegate each time you need it:</p>
<pre><code>RemoveIf(_Entities.Item, delegate(Item i) { return i.OffScreen(); });
</code></pre>
http://stackoverflow.com/questions/1508140/issue-calling-a-web-service-use-the-xmlinclude-or-soapinclude-attribute1Issue calling a web service - Use the XmlInclude or SoapInclude attributeOdd2009-10-02T07:26:23Z2009-10-02T07:35:14Z
<p>I'm calling someone else's web service, they have provided a WSDL file and a bunch of XSD files. I have create the web reference in my project using the local WSDL file and created a class using xsd.exe. The web method I'm calling is </p>
<pre><code>object MyService.MyMethod(object myObj)
</code></pre>
<p>So I create a new instance of my service and a new instance of my object created by the xsd. The web service documentation tells me that myObj is of type ObjectRQ (created from the xsd).</p>
<p>My code is like this:</p>
<pre><code>MyService service = new MyService();
ObjectRQ request = new ObjectRQ();
// Set the values of request.
object result = service.MyMethod(request);
</code></pre>
<p>On the last line of that code I get an error:</p>
<blockquote>
<p>The type ObjectRQ was not expected. Use the XmlInclude or SoapInclude attribute to specify types that are not known statically.</p>
</blockquote>
<p>I don't know what could be causing this error and my search hasn't yielded anything helpful. Can anyone help me with this?</p>
http://stackoverflow.com/questions/348785/crystal-reports-in-asp-net-mvc2Crystal Reports in ASP.NET MVCOdd2008-12-08T06:14:16Z2009-09-28T08:14:47Z
<p>I know the use of server-side controls is a no-no in ASP.NET MVC, however we have a long list of crystal reports that the company has already produced for a previous application that I would like to utilize for our new ASP.NET MVC application.</p>
<p>Is there an appropriate way to use crystal reports in ASP.NET MVC? If so, how?</p>
http://stackoverflow.com/questions/160488/asp-net-wsat-website-administration-tool-and-custom-membership-providers1ASP.NET WSAT (Website Administration Tool) and Custom Membership ProvidersOdd2008-10-02T01:31:31Z2009-09-27T11:16:02Z
<p>Hi,</p>
<p>I'm building an ASP.NET MVC applicaiton that will have custom role and membership providers. I have been looking into adminstration tools to save us some time, <a href="http://www.codeplex.com/AspNetWSAT" rel="nofollow">WSAT</a> has crossed my path. It looks good at a glance, it's all open source and very simple if it doesn't work I can fix it myself.</p>
<p>First question is have any of you used WSAT for a product system in the past. Is it worth while, should I consider it and what reasons are there for not using it?</p>
<p>Second question, does anyone know how well WSAT works with custom providers? </p>
<p>Thanks for your feedback.</p>
http://stackoverflow.com/questions/1392089/wcf-security-data-origin-security0WCF Security - Data origin securityOdd2009-09-08T05:11:18Z2009-09-08T05:50:01Z
<p>I have a web service implemented in WCF. This service is only going to be called by a single client, a site with a static IP address. I would like to implement simple security that would verify that all calls to the service are only valid if they came from this particular static IP.</p>
<p>What is the best way to do this?</p>
http://stackoverflow.com/questions/1356227/calling-a-procedure-or-handling-in-code-behind-which-is-better/1357377#13573770Answer by Odd for calling a procedure or handling in code behind - which is better?Odd2009-08-31T13:05:52Z2009-08-31T13:05:52Z<p>I'm sure this question might be better answered by reading a little about best practices. I think in your situation you might look into a programming model that will help you define some practices that best suit you and what you're trying to achieve. </p>
<p>In this case there are a few questions like are you going to write unit tests for your code? Is Seperation of Concerns an issue for you? How large is your program going to be?</p>
<p>Why not look to a best practice like approach like the <a href="http://msdn.microsoft.com/en-us/magazine/cc188690.aspx" rel="nofollow">Model View Presenter</a>, sometimes called the <a href="http://martinfowler.com/eaaDev/ModelViewPresenter.html" rel="nofollow">Supervising Controller or Passive View</a> or a more structured framework for ASP.NET like ASP.NET MVC where you might find that best practices are a lot easier to follow.</p>
http://stackoverflow.com/questions/1320039/private-accessor-dont-build-when-using-msbuild0Private Accessor don't build when using MSBuildOdd2009-08-24T01:00:41Z2009-08-27T07:20:20Z
<p>My build server uses MSBuild to build my application. Our unit tests require access to some private members for testing, so we use the built in private accessors. Visual Studio has no problem with it, but when we push our code to the build server we get the error:</p>
<blockquote>
<p>MyTest.cs (96,13): errorCS0246: The
type or namespace name 'My_Accessor'
could not be found (are you missing a
using directive or an assembly
reference?)</p>
</blockquote>
<p>Why is it that MSBuild ignores the private accessors and how can I fix it?</p>
<p>We use NUnit for our testing framework and CruiseControl.Net for our continuous integration server.</p>
<p>EDIT:
As per the comment, here is some test code for the base class for a repository pattern class.</p>
<pre><code>MockRepository mocks = new MockRepository();
IDataContextWrapper wrapper = mocks.DynamicMock<IDataContextWrapper>();
Repository_Accessor target = new Repository_Accessor(wrapper);
Assert.AreEqual(wrapper, target._DataContext);
</code></pre>
<p>This code simply verifies that the member variables _DataContext is set to the mocked wrapper. It fails when building with MSBuild on my build server.</p>
http://stackoverflow.com/questions/1320039/private-accessor-dont-build-when-using-msbuild/1339383#13393830Answer by Odd for Private Accessor don't build when using MSBuildOdd2009-08-27T07:20:20Z2009-08-27T07:20:20Z<p>As good as Mehmet's answer was, I'm afraid the only way I could get this to work was to install visual studio. Once this was installed, msbuild started to produce the accessors for me. Not an ideal solution but at least I can move on.</p>
http://stackoverflow.com/questions/1319967/which-namespace-does-a-factory-class-belong/1320065#13200652Answer by Odd for Which namespace does a factory class belong?Odd2009-08-24T01:09:15Z2009-08-24T01:09:15Z<p>Because the code that uses your factory needs have absolutely no knowledge of the implementation in the abstract factory pattern, I usually put the interface and the factory (plus any type information) into the root, then the implementations into their own folders (or folder if there are few).</p>
<p>So in your case I have something like:</p>
<pre><code>Loader
- DocumentLoaderFactory
- DocumentLoadType
- IDocumentLoader
Loader\Implementation
- NameDocumentLoader
- TypeDocumentLoader
- ConnectionDocumentLoader
- DocumentLoader
</code></pre>
<p>I've assumed that DocumentLoader is an abstract base class that inherits your interface because of it's name, but you get the idea. I don't know what your other class "TreeViewImageIndex" is for but you could put it in either place or somewhere completely different if it's appropriate.</p>
<p>This keeps your code nice and cohesive, does not require your implementing class to know about the Loader\Implementation namespace and lets your document tree be easier to read.</p>
http://stackoverflow.com/questions/1303297/jquery-ajax-json-submission-problem-with-single-quotes2jQuery Ajax Json submission problem with single quotesOdd2009-08-20T00:12:28Z2009-08-20T00:33:10Z
<p>I've looked around and I'm trying to find an elegant solution to this and I'm yet to find one. I have an ASMX web service in .NET that I'm trying to call that requires parameters. I'm using jQuery on the client side to call the service and my jQuery looks something like this:</p>
<pre><code>$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
url: "/Reviews/HotelReview.asmx/SubmitReview",
data: "{'name': '" + name + "', " +
"'info': '" info + "'}",
processData: true,
beforeSend: function() { startSubmit(); },
complete: function() { submitComplete(); },
error: function(xhr) { submitError(xhr); },
success: function(msg) { submitSuccess(msg.d); }
});
</code></pre>
<p>It works very well, except when either <strong>name</strong> or <strong>info</strong> contain the <strong>'</strong> character, a single quote. Simple enough because my JSON defines the end of the value of the field is a single quote. When either of these fields contains a single quote all I get is an "Internal Server Error", but further inspection using fiddler showed me the results (I won't bother to post them) indicating the single quote issue.</p>
<p>I've put something in place temporarily to remove the single quotes on the client side and put them back in on the server side, but this is far from elegant. Does anyone else know a more elegant way to escape these single quotes so that my code can work?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1197908/better-to-have-huge-controllers-or-many-controllers-in-mvc/1198115#11981151Answer by Odd for Better to have huge Controllers, or many controllers, in MVC?Odd2009-07-29T04:57:23Z2009-07-29T04:57:23Z<p>Controllers are meant to be containers for actions under one context. I.E. a customer controller would have actions pertaining to controlling customers. This is particularly suited to CRUD. I would go with fewer larger controllers for this reason. That said, it is really up to you as the application architect to choose the way that best suits your code and just because it is more common to do it one way doesn't mean you have to.</p>
<p>If you have large amounts of code I would suggest you look into ASP.NET MVC areas. You can find excellent posts about it <a href="http://haacked.com/archive/2008/11/04/areas-in-aspnetmvc.aspx" rel="nofollow">Here in Scott Gu's blog</a> and <a href="http://blog.codeville.net/2008/11/05/app-areas-in-aspnet-mvc-take-2/" rel="nofollow">Here in Steve Sanderson's blog</a>. If you have so many controllers, it might be suitable for you.</p>
<p>Just had a thought after re-reading your post, I suspect your example doesn't come close to the level of complication you have in your code. Perhaps it might help if you posted a situation where you were unsure whether or not it was a good idea to split your controller that is more specific (and less CRUDDY, because CRUD is fairly straight forward).</p>
http://stackoverflow.com/questions/1192173/how-to-call-a-asp-net-page-asynchronously-using-jquery/1192179#11921791Answer by Odd for How to call a asp.net page asynchronously using JQueryOdd2009-07-28T06:12:22Z2009-07-28T06:12:22Z<p>You can use AJAX in jQuery to call a page method without too much trouble. Though I guess it depends on what you're trying to do. Sometimes it's better to contain your asynchronous methods inside a web service or web handler instead of the page.</p>
<p><a href="http://oddiandeveloper.blogspot.com/2009/07/asynchronous-posting-with-aspnet-jquery.html" rel="nofollow">I've posted on how to do this here</a>. But it's not an example on how to do it with a page method, though the process is very similar.</p>
<p>BTW, a quick web search will turn up MANY results on what you're trying to do.</p>
<p><a href="http://weblogs.asp.net/craigshoemaker/archive/2008/11/07/using-jquery-to-call-asp-net-ajax-page-methods-by-example.aspx" rel="nofollow">This example is very good.</a></p>
http://stackoverflow.com/questions/1170008/building-a-language-switcher-2-languages-only-asp-net-mvc/1170127#11701271Answer by Odd for Building a language switcher - 2 languages only - ASP.NET MVCOdd2009-07-23T07:13:39Z2009-07-23T07:13:39Z<p>We found when making our site that it wasn't just the language that needed change but the views themselves for our international customers needed to be different. I.E. our Hong Kong office required different amounts of space and data for view data then our english office. Just changing the language mucked about the view layout somewhat and caused me a little trouble.</p>
<p><a href="http://oddiandeveloper.blogspot.com/2008/11/localization-with-aspnet-mvc.html" rel="nofollow">What we ended up doing was this</a></p>
<p>With a very small amount of coding you can override the routing to your views and send English to one set of views and Japanese to another under whatever circumstances you like. No need to change the URL or do it client side or even change your actions.</p>
<p>EDIT: After re-reading I think this will be very appropriate for your site as you use two sets of views, one for each language.</p>
http://stackoverflow.com/questions/1169579/using-statment-and-entity-framework-entities/1169764#11697640Answer by Odd for Using statment and Entity Framework EntitiesOdd2009-07-23T05:27:08Z2009-07-23T05:27:08Z<p>The attachment of the object isn't directly related to the context in my understanding. I believe that if the entity keys are set then it is still attached. You can detach the object, but you have to do it manually using the Detach method. </p>
<p>If you're after a detached object, try detaching it manually. Otherwise what you have done should allow you to update the object and save the changes without re-attaching the object.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1169622/asp-net-mvc-same-view-name-different-paths/1169757#11697571Answer by Odd for Asp.net MVC same view name, different pathsOdd2009-07-23T05:24:09Z2009-07-23T05:24:09Z<p>One of the major problems with the first release (And all the RC and Beta's of course) is that ASP.NET MVC does not support areas. Areas are something that alternative MVC frameworks for ASP.NET have supported for some time and when your project gets to a reasonable size you're going to end up with possibly hundreds of controllers (all with unique names) in the same folder and your code is going to be very hard to sort through.</p>
<p>Your idea makes perfect sense and I hope that future instances of the ASP.NET MVC framework supports areas out of the box (so to speak). In the mean time it's easy to create your own Areas framework on top of ASP.NET MVC.</p>
<p>Here are some posts that will help you out:</p>
<ul>
<li><a href="http://haacked.com/archive/2008/11/04/areas-in-aspnetmvc.aspx" rel="nofollow">Phil Haack's Post</a> Posted already
by çağdaş</li>
<li><a href="http://blog.codeville.net/2008/11/05/app-areas-in-aspnet-mvc-take-2/" rel="nofollow">Steve Sanderson's Response</a> A
response by Steve to Phil's post
taking it futher</li>
<li><a href="http://oddiandeveloper.blogspot.com/2008/11/localization-with-aspnet-mvc.html" rel="nofollow">My Post on Localisation using
Areas</a></li>
<li><a href="http://oddiandeveloper.blogspot.com/2009/02/aspnet-mvc-rc1-and-areas.html" rel="nofollow">Another one of my posts on areas with strongly typed view names</a></li>
</ul>
<p>Hopefully they're helpful to you.</p>
http://stackoverflow.com/questions/1168841/c-asp-net-mvc-single-line-if-clause-in-view/1168869#11688691Answer by Odd for C# ASP.NET MVC: Single-Line If Clause in View?Odd2009-07-22T23:46:36Z2009-07-22T23:46:36Z<p><%= %> is basically like writing Response.Write(your data)</p>
<p><% %> means the code will execute, but it's not going to specifically write anything out.</p>
<p>You could use a Response.Write inside your if block to output the data you want. </p>
<pre><code><% if (!Model.DisplayText) { Response.Write(Model.MyText); } %>
</code></pre>
<p>Or go with OrbMan's answer, he beat me to it.</p>
http://stackoverflow.com/questions/283180/is-there-a-way-to-put-aspx-files-into-a-class-library-in-visual-studio-2008-net0Is there a way to put aspx files into a class library in Visual Studio 2008 .NET 3.5?Odd2008-11-12T06:37:02Z2009-07-21T20:05:03Z
<p>I've got a lot of pages in my site, I'm trying to think of a nice way to separate these into areas that are a little more isolated than just simple directories under my base web project. Is there a way to put my web forms into a separate class library? If so, how is it done?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/260512/n-tier-design-with-website-and-backend-transaction-processor/260628#2606281Answer by Odd for n-tier design with website and backend transaction processor.Odd2008-11-04T02:28:01Z2009-07-21T19:42:18Z<p>If you separate your concerns well then I think that you will be able to view them as the same application with a single business logic layer, there is no point writing the same code twice. The trick will be forcing the separation of concerns between the user interface portions of the website and the business logic in your BLL library.</p>
<p>Performance is going to be an issue as well, you have to ensure that your batch processing doesn't block your website from performing tasks that it needs to perform due to your resources. This may be an argument to keep them more separate, however as they're likely sharing a database anyway (or some other file based resource) then that may be an issue regardless.</p>
<p>I would keep a common business logic library programmed to interfaces and fully separated from your other concerns.</p>
http://stackoverflow.com/questions/1156911/cruisecontrol-net-build-fails-when-svn-is-not-available5CruiseControl.NET build fails when SVN is not availableOdd2009-07-21T01:46:53Z2009-07-21T02:22:21Z
<p>We have an SVN repository hosted externally and our build server is currently internal. Occasionally (probably 1 or 2 times a day) the build server is unable to find the SVN repository due to a network outage, a timeout or some other random reason. With an externally hosted repository this is hard to avoid, however when it fails to find the SVN repository it fails the build!</p>
<p>I would like to find a way for it to just try again at the next interval and ignore any errors relating to an unfound repository. Does anyone know how I can do this?</p>
<p>I have posted my config for reference below.</p>
<pre><code><project name="MyProject" queuePriority="0">
<workingDirectory>C:\RemovedForPost</workingDirectory>
<artifactDirectory>C:\RemovedForPost </artifactDirectory>
<sourcecontrol type="svn">
<trunkUrl>http://RemovedForPost \</trunkUrl>
<workingDirectory>source</workingDirectory>
<username>myuser</username>
<password>*****</password>
</sourcecontrol>
<triggers>
<intervalTrigger name="BuildAMinute" seconds="60" buildCondition="IfModificationExists" />
</triggers>
<tasks>
<msbuild>
<executable>C:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe</executable>
<workingDirectory>C:\RemovedForPost</workingDirectory>
<projectFile>C:\RemovedForPost\RemovedForPost.sln</projectFile>
<buildArgs>/noconsolelogger /p:Configuration=Debug /v:diag</buildArgs>
<targets>Build</targets>
<logger>C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll</logger>
<timeout>120</timeout>
</msbuild>
<nunit>
<path>C:\Program Files\NUnit 2.5\bin\net-2.0\nunit-console.exe</path>
<outputfile>C:\RemovedForPost.xml</outputfile>
<assemblies>
<assembly> RemovedForPost </assembly>
</assemblies>
<timeout>60</timeout>
</nunit>
</tasks>
</code></pre>
<p></p>
<p>Thanks</p>
http://stackoverflow.com/questions/1904524/asp-net-mvc-and-webforms-co-existing/1904691#1904691Comment by Odd on asp.net-mvc and webforms co-existingOdd2009-12-15T07:11:55Z2009-12-15T07:11:55ZAgreed, this is your problem if you haven't done it.http://stackoverflow.com/questions/882616/how-do-i-moq-a-isingleresult-should-i-or-there-is-a-better-method/883837#883837Comment by Odd on How do I moq a ISingleResult? Should I? or there is a better method?Odd2009-12-14T01:45:50Z2009-12-14T01:45:50ZGreat answer, solved my problem.http://stackoverflow.com/questions/882616/how-do-i-moq-a-isingleresult-should-i-or-there-is-a-better-methodComment by Odd on How do I moq a ISingleResult? Should I? or there is a better method?Odd2009-12-14T01:32:17Z2009-12-14T01:32:17ZThanks, your question and the first answer really helped me solve me problem.http://stackoverflow.com/questions/1837374/model-binding-and-display-trimmed-string-property/1837483#1837483Comment by Odd on Model binding and display trimmed string propertyOdd2009-12-03T03:49:40Z2009-12-03T03:49:40Z"Or any ideas to how fix this?"
The helper was a simple solution to deal with a nullable field.http://stackoverflow.com/questions/1508140/issue-calling-a-web-service-use-the-xmlinclude-or-soapinclude-attribute/1508164#1508164Comment by Odd on Issue calling a web service - Use the XmlInclude or SoapInclude attributeOdd2009-10-06T06:40:13Z2009-10-06T06:40:13ZLooks like this is correct, unfortunately for me there were so many other issues with the WSDL file not creating a descent proxy that I've just given up and gone direct HTTP. Your answer was dead on though, thanks.http://stackoverflow.com/questions/1496262/asp-net-three-tierComment by Odd on ASP.NET Three TierOdd2009-09-30T05:41:38Z2009-09-30T05:41:38ZWill your whole data access layer be on a different server or just your database be on a different server?
http://stackoverflow.com/questions/160488/asp-net-wsat-website-administration-tool-and-custom-membership-providers/1483366#1483366Comment by Odd on ASP.NET WSAT (Website Administration Tool) and Custom Membership ProvidersOdd2009-09-28T06:32:26Z2009-09-28T06:32:26ZThis query might be a bit old, but thanks for the informative answer.http://stackoverflow.com/questions/1397535/block-characters-from-input-text-field-mirror-input-into-span-or-divComment by Odd on Block characters from input text field, mirror input into span or divOdd2009-09-09T04:37:16Z2009-09-09T04:37:16ZWhat is the question exactly? Also, your javascript might be better in a code block and formatted so it's readable.http://stackoverflow.com/questions/1392089/wcf-security-data-origin-security/1392211#1392211Comment by Odd on WCF Security - Data origin securityOdd2009-09-08T23:08:54Z2009-09-08T23:08:54ZI was hoping to do with with config, not code, but this will certainly do the trick if there is no way to do it with config. Thanks for the answer.http://stackoverflow.com/questions/1320039/private-accessor-dont-build-when-using-msbuild/1338189#1338189Comment by Odd on Private Accessor don't build when using MSBuildOdd2009-08-27T07:24:41Z2009-08-27T07:24:41ZWhile it might work, it's not what I'm after. I can produce a DLL that contains the accessor in it, but it is quite difficult to then have to link this into the solution. I'm trying to install Visual Studio now to see if that works.http://stackoverflow.com/questions/1320039/private-accessor-dont-build-when-using-msbuild/1338189#1338189Comment by Odd on Private Accessor don't build when using MSBuildOdd2009-08-27T00:20:53Z2009-08-27T00:20:53ZI'll give this a shot today, sounds like it could be a likely culprithttp://stackoverflow.com/questions/1320039/private-accessor-dont-build-when-using-msbuild/1338154#1338154Comment by Odd on Private Accessor don't build when using MSBuildOdd2009-08-27T00:14:32Z2009-08-27T00:14:32ZThe source shared between the build server and the development environmentis exactly the same, so this is not likely the problem.http://stackoverflow.com/questions/1320039/private-accessor-dont-build-when-using-msbuild/1338154#1338154Comment by Odd on Private Accessor don't build when using MSBuildOdd2009-08-26T23:47:32Z2009-08-26T23:47:32ZHow do I check the value of [assembly:InternalsVisibleTo]?http://stackoverflow.com/questions/1338061/ado-net-entity-framework-best-way-of-creating-generic-interface-for-business-ent/1338108#1338108Comment by Odd on ADO.NET Entity Framework: Best way of creating generic interface for business entities?Odd2009-08-26T23:42:24Z2009-08-26T23:42:24ZYup that's pretty much the way it's done with the entity framework.http://stackoverflow.com/questions/1319967/which-namespace-does-a-factory-class-belong/1320065#1320065Comment by Odd on Which namespace does a factory class belong?Odd2009-08-26T23:33:43Z2009-08-26T23:33:43ZThat's fine, it doesn't suit everyone. I personally don't like to keep too many classes in a single namespace / directory because it clutters up my code and where I can logically separate, I do.