User Dominic Godin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T15:24:08Zhttp://stackoverflow.com/feeds/user/5170http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1763434/c-datetime-comparisons-accuracy-and-rounding3C# DateTime comparisons accuracy and rounding.Dominic Godin2009-11-19T13:52:42Z2009-11-19T14:46:32Z
<p>I have two dates. One supplied by the user and accurate to the second and one from the database and accurate to the tick level. This means when they both represent 13/11/2009 17:22:17 (British dates)</p>
<pre><code>userTime == dbTime
</code></pre>
<p>returns false </p>
<p>The tick values are 633937297368344183 and 633937297370000000.</p>
<p>To fix this I use the code</p>
<pre><code>userTime = new DateTime(
userTime.Year,
userTime.Month,
userTime.Day,
userTime.Hour,
userTime.Minute,
userTime.Second);
dbTime = new DateTime(
dbTime.Year,
dbTime.Month,
dbTime.Day,
dbTime.Hour,
dbTime.Minute,
dbTime.Second);
</code></pre>
<p>Is there a more elegant way to achieve this?</p>
http://stackoverflow.com/questions/1644004/how-do-i-add-an-xml-attribute-using-datacontract0How do I add an XML attribute using DataContractDominic Godin2009-10-29T14:10:11Z2009-11-07T15:36:30Z
<p>Hi</p>
<p>I have a simple class I'm serializing.</p>
<pre><code> [DataContract(Name = "Test", Namespace = "")]
public class Test
{
[DataMember(Order = 0, Name = "Text")]
public string Text { get; set; }
public Test() {}
}
</code></pre>
<p>This kicks out the following XML:</p>
<pre><code><Test>
<Text>Text here</Text>
</Test>
</code></pre>
<p>What I want is:</p>
<pre><code><Test>
<Text type="MyType">Text here</Text>
</Test>
</code></pre>
<p>How do I add attributes the the XML elements?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1455281/linq-prefetching-data-from-a-second-table0LINQ: Prefetching data from a second tableDominic Godin2009-09-21T15:58:28Z2009-09-21T16:12:07Z
<p>Hi,</p>
<p>I'm trying to pre-fetch some foreign key data using a linq query. A quick example to explain my problem follows:</p>
<pre><code>var results = (from c in _customers
from ct in _customerTypes
where c.TypeId == ct.TypeId
select new Customer
{
CustomerId = c.CustomerId,
Name = c.Name,
TypeId = c.TypeId,
TypeName = ct.TypeName, <-- Trying to Prefetch this
}).ToList();
</code></pre>
<p>The Customer class looks like:</p>
<pre><code>[Table(Name = "Customers")]
public class Customer
{
[Column(Name = "CustomerId", IsPrimaryKey = true, IsDbGenerated = true, AutoSync = AutoSync.OnInsert)]
public int CustomerId { get; set; }
[Column(Name = "Name")]
public string Name { get; set; }
[Column(Name = "TypeId")]
public int TypeId { get; set;}
public string TypeName { get; set; }
public Confession (){}
}
</code></pre>
<p>However LINQ will not let you do this throwing a NotSupportedException with "Explicit construction of entity type 'Customer' in query is not allowed."</p>
<p>I'm clearly approaching this incorrectly. Any pointers in the right direction would be most helpfull.</p>
http://stackoverflow.com/questions/1443979/sql-how-to-find-the-top-string-column-value-in-a-grouped-query0SQL: How To Find The Top String Column Value in a Grouped QueryDominic Godin2009-09-18T11:31:53Z2009-09-18T11:46:04Z
<p>When grouping is there a simple way to get the first or top value out of a column. In the following example I want the last value in [Text] if sorted by [Date] descending.</p>
<pre><code>SELECT
[Id],
MAX([Date]),
TOP 1 [Text], <-- How do I do do this
COUNT(*)
FROM
[ExampleTable]
GROUP BY [Id]
ORDER BY [Date] DESC
</code></pre>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1393240/linq-looking-for-an-efficient-way-to-search-a-column-to-see-if-it-contains-any-w1Linq: Looking for an efficient way to search a column to see if it contains any word from a list of words.Dominic Godin2009-09-08T10:38:31Z2009-09-08T10:49:44Z
<p>I have a Linq query that will search a column for a word and return the number of entries found with the said word. I then loop this for each word I'm looking for.</p>
<pre><code>var results = new List<WordCountResult>(words.Count);
foreach (var word in words)
{
var wordCount = (from s in _searchResult
where s.Date>= startDate
&& s.Date<= endDate
&& SqlMethods.Like(s.TargetColumn, "%" + word + "%")
select s).Count();
results.Add(new WordCountResult(word, wordCount));
}
return results;
</code></pre>
<p>While the code is neat it is inefficient as it query's the database multiple times. </p>
<p>Is the a Linq guru out there that can show how this can be done with one call the the database?</p>
http://stackoverflow.com/questions/1342238/iphone-web-development-image-scaling0iPhone Web Development Image ScalingDominic Godin2009-08-27T16:31:19Z2009-09-01T09:25:37Z
<p>I am developing a simple web page to be viewed after an iphone application completes. I am finding the safari degrades the image quality of the jpg so its all fuzzy. </p>
<p>The image is background image applied to a div</p>
<pre><code>div.foo
{
background: url(../images/foo.jpg) no-repeat;
width:320px;
height:349px;
}
</code></pre>
<p>The width and height are exactly the same as the jpg image. Is there a way to make sure the image gets displayed in its full quality?</p>
http://stackoverflow.com/questions/1342238/iphone-web-development-image-scaling/1361465#13614650Answer by Dominic Godin for iPhone Web Development Image ScalingDominic Godin2009-09-01T09:25:37Z2009-09-01T09:25:37Z<p>Found the answer. The iphone "optimises" jpg's, compressing them to minimise the file size but destroying the quality of the image. All the reading I did suggested there was no way to switch this "feature" off.</p>
<p>The solution is simple, switch to pngs.</p>
http://stackoverflow.com/questions/1211671/encrypting-and-decrypting-xml-sent-and-received-by-restful-wcf-web-services1Encrypting and Decrypting XML sent and received by RESTful WCF Web ServicesDominic Godin2009-07-31T09:54:02Z2009-08-26T09:41:39Z
<p>I have a web service that receives data in XML. I wish this XML to be encrypted before it is sent and have the serializer handle the decryption. This would let the service methods receive the objects as normal with the encryption detail hidden from them.</p>
<p>I have looked at IOperationBehaviour and inheriting from DataContractSerializerOperationBehavior however I'm finding it hard to find good documentation on how these work and the best way to override/implement them.</p>
<p>Is what I'm trying to do possible? Am I going about it in the right way? Any pointers would be most welcome.</p>
http://stackoverflow.com/questions/1288526/grouping-by-time-ranges-in-linq1Grouping by Time ranges in LinqDominic Godin2009-08-17T15:13:10Z2009-08-17T15:56:42Z
<p>I've been getting stuck into some linq queries for the first time today and I'm struggling with some of the more complicated ones. I'm building a query to extract data from a table to build a graph. The tables colums I'm interested in are <strong>Id</strong>, <strong>Time</strong> and <strong>Value</strong>.</p>
<p>The user will select a start time, an end time and the number of intervals (points) to graph. The value column will averaged for each interval.</p>
<p>I can do this with a linq request for each interval but I'm trying to write it in one query so I only need to go to the database once.</p>
<p>So far I have got:</p>
<pre><code>var timeSpan = endTime.Subtract(startTime);
var intervalInSeconds = timeSpan.TotalSeconds / intervals;
var wattList = (from t in _table
where t.Id == id
&& t.Time >= startTime
&& t.Time <= endTime
group t by intervalInSeconds // This is the bit I'm struggling with
into g
orderby g.Key
select g.Average(a => a.Value))
).ToList();
</code></pre>
<p>Any help on grouping over time ranges will be most welcome.</p>
http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method2Handling null results with the Linq Average() methodDominic Godin2009-08-17T10:07:37Z2009-08-17T11:38:39Z
<p>I am new to linq and am trying to create some data points from a table to graph. The three fields of importance in this table are the id, the time and the value. I am writing a query to get the average value over a set time for a chosen id. The linq I have written follows:</p>
<pre><code>var value = (from t in _table
where t.Id == id
&& t.Time >= intervalStartTime
&& t.Time <= intervalEndTime
select t.Value).Average();
</code></pre>
<p>However this crashes at runtime with:</p>
<blockquote>
<p>"The null value cannot be assigned to
a member with type System.Decimal
which is a non-nullable value type.."</p>
</blockquote>
<p>At certain intervals there is no data so the SQL linq generates returns null, which I would liked to be COALESCED to 0 but instead crashes the application. Is there a way to write this linq query to be able to handle this properly?</p>
<p><strong>EDIT</strong></p>
<p>I'll add the table definition to make things clearer.</p>
<pre><code>[Serializable]
[Table(Name = "ExampleTable")]
public class ExampleTable
{
[Column(Name = "Id")]
public int Id { get; set; }
[Column(Name = "Time")]
public DateTime Time { get; set; }
[Column(Name = "Value")]
public int Value{ get; set; }
}
</code></pre>
http://stackoverflow.com/questions/803600/how-to-serialize-on-to-existing-file/1232693#12326932Answer by Dominic Godin for How to serialize on to existing file?Dominic Godin2009-08-05T11:34:53Z2009-08-05T11:34:53Z<p>This is indeed possible. The code below appends the object.</p>
<pre><code>using (var fileStream = new FileStream("C:\file.dat", FileMode.Append))
{
var bFormatter = new BinaryFormatter();
bFormatter.Serialize(fileStream, objectToSerialize);
}
</code></pre>
<p>The following code de-serializes the objects.</p>
<pre><code>var list = new List<ObjectToSerialize>();
using (var fileStream = new FileStream("C:\file.dat", FileMode.Open))
{
var bFormatter = new BinaryFormatter();
while (fileStream.Position != fileStream.Length)
{
list.Add((ObjectToSerialize)bFormatter.Deserialize(fileStream));
}
}
</code></pre>
<p>Note for this to work the file must only contain the same objects.</p>
http://stackoverflow.com/questions/578443/asp-net-mvc-ajax-with-jquery/1205999#12059990Answer by Dominic Godin for ASP.NET MVC AJAX with jQueryDominic Godin2009-07-30T11:26:51Z2009-07-30T11:26:51Z<p>I have written a <a href="http://dyslexicprogrammer.blogspot.com/2009/07/calling-actions-in-javascript-by-action.html" rel="nofollow">blog</a> post on this that will show you do how to this without hard coding your urls in JavaScript. You can call them using the action and controller names.</p>
http://stackoverflow.com/questions/1059152/when-creating-a-multiple-project-template-for-visual-studio-is-there-a-way-to-use1When creating a multiple project template for visual studio is there a way to use parameters in the root template file?Dominic Godin2009-06-29T16:11:56Z2009-06-29T16:32:38Z
<p>Hi,</p>
<p>I am trying to create a multi project template. I wish the sub projects names to contain the solution name. I have tried the following however $safeprojectName$ doesn't work in the root template for some reason. It tries to create the folders with $safeprojectName$ in the name rather than the actual project name.</p>
<pre><code><VSTemplate Version="2.0.0" Type="ProjectGroup"
xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>Default Solution</Name>
<Description>An example of a multi-project template</Description>
<Icon>Icon.ico</Icon>
<ProjectType>CSharp</ProjectType>
</TemplateData>
<TemplateContent>
<ProjectCollection>
<SolutionFolder Name="$safeprojectName$.Web">
<ProjectTemplateLink ProjectName="$safeprojectName$.Web">
Src\Web\MyTemplate.vstemplate
</ProjectTemplateLink>
</SolutionFolder>
</ProjectCollection>
</TemplateContent>
</VSTemplate>
</code></pre>
<p>I have done a lot of reading on this and have and have created an assembly using the IWizard interface that creates a parameter $solutionName$. I then used the following template.</p>
<pre><code><VSTemplate Version="2.0.0" Type="ProjectGroup"
xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>Default Solution</Name>
<Description>An example of a multi-project template</Description>
<Icon>Icon.ico</Icon>
<ProjectType>CSharp</ProjectType>
</TemplateData>
<TemplateContent>
<ProjectCollection>
<SolutionFolder Name="$solutionName$.Web">
<ProjectTemplateLink ProjectName="$solutionName$.Web">
Src\Web\MyTemplate.vstemplate
</ProjectTemplateLink>
</SolutionFolder>
</ProjectCollection>
</TemplateContent>
<WizardExtension>
<Assembly>DefaultSoloutionWizard, Version=1.0.0.0, Culture=Neutral, PublicKeyToken=f753ddb61a28cb36, processorArchitecture=MSIL</Assembly>
<FullClassName>DefaultSoloutionWizard.WizardImplementation</FullClassName>
</WizardExtension>
</VSTemplate>
</code></pre>
<p>This however also fails with the same problem. I'm I trying to do the impossible? Any help on this would be most welcome.</p>
http://stackoverflow.com/questions/986183/mocking-the-routedata-class-in-system-web-routing-for-mvc-applications4Mocking The RouteData Class in System.Web.Routing for MVC applicationsDominic Godin2009-06-12T11:30:03Z2009-06-12T12:23:03Z
<p>Hi, </p>
<p>I'm trying to test some application logic that is dependent on the Values property in ControllerContext.RouteData. </p>
<p>So far I have</p>
<pre><code>// Arrange
var httpContextMock = new Mock<HttpContextBase>(MockBehavior.Loose);
var controllerMock = new Mock<ControllerBase>(MockBehavior.Loose);
var routeDataMock = new Mock<RouteData>();
var wantedRouteValues = new Dictionary<string, string>();
wantedRouteValues.Add("key1", "value1");
var routeValues = new RouteValueDictionary(wantedRouteValues);
routeDataMock.SetupGet(r => r.Values).Returns(routeValues); <=== Fails here
var controllerContext = new ControllerContext(httpContextMock.Object, routeDataMock.Object, controllerMock.Object);
</code></pre>
<p>The unit test fails with:
System.ArgumentException: Invalid setup on a non-overridable member:
r => r.Values</p>
<p>Creating a fake RouteData doesn't work either as the constructor is RouteData(RouteBase,IRouteHandler).</p>
<p>The important class here is the abstract class RouteBase which has the method GetRouteData(HttpContextBase) which returns an instance of RouteData, the class I'm trying to fake. Taking me around in circles!</p>
<p>Any help on this would be most welcome.</p>
http://stackoverflow.com/questions/55054/whats-the-best-way-to-capitalise-the-first-letter-of-each-word-in-a-string-in-sq4What’s the best way to capitalise the first letter of each word in a string in SQL Server.Dominic Godin2008-09-10T19:07:08Z2009-02-18T11:17:41Z
<p>What’s the best way to capitalise the first letter of each word in a string in SQL Server.</p>
http://stackoverflow.com/questions/515565/how-do-i-create-a-thread-that-runs-all-the-time-in-the-background-in-a-net-web-s5How do I create a thread that runs all the time in the background in a .net web site?Dominic Godin2009-02-05T11:50:04Z2009-02-05T12:40:57Z
<p>I intend to build a small web site that will poll a third party web service, say every 15 minutes, store the collected data in a db and display the results via web pages. </p>
<p>I want the polling to run 24 hours a day with or without anyone visiting the web site.</p>
<p>I know I could create a stand alone application that could run on the server to do this but is there a clean way to incorporate this into the website code. I need something that would be easy to deploy on a cheep 3rd party hosting site.</p>
<p>Any pointers in the right direction will be welcome.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/49430/animation-extender-problems1Animation Extender ProblemsDominic Godin2008-09-08T10:29:53Z2008-09-17T16:03:45Z
<p>Hi,</p>
<p>I have just started working with the AnimationExtender. I am using it to show a new div with a list gathered from a database when a button is pressed. The problem is the button needs to do a postback to get this list as I don't want to make the call to the database unless it's needed. The postback however stops the animation mid flow and resets it. The button is within an update panel.</p>
<p>Ideally I would want the animation to start once the postback is complete and the list has been gathered. I have looked into using the ScriptManager to detect when the postback is complete and have made some progress. I have added two javascript methods to the page.</p>
<pre><code>function linkPostback() {
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(playAnimation)
}
function playAnimation() {
var onclkBehavior = $find("ctl00_btnOpenList").get_OnClickBehavior().get_animation();
onclkBehavior.play();
}
</code></pre>
<p>And I’ve changed the btnOpenList.OnClientClick=”linkPostback();”</p>
<p>This almost solves the problem. I’m still get some animation stutter. The animation starts to play before the postback and then plays properly after postback. Using the onclkBehavior.pause() has no effect. I can get around this by setting the AnimationExtender.Enabled = false and setting it to true in the buttons postback event. This however works only once as now the AnimationExtender is enabled again. I have also tried disabling the AnimationExtender via javascript but this has no effect.</p>
<p>Is there a way of playing the animations only via javascript calls? I need to decouple the automatic link to the
buttons click event so I can control when the animation is fired.</p>
<p>Hope that makes sense.</p>
<p>Thanks</p>
<p>DG</p>
http://stackoverflow.com/questions/49430/animation-extender-problems/84844#848440Answer by Dominic Godin for Animation Extender ProblemsDominic Godin2008-09-17T16:03:45Z2008-09-17T16:03:45Z<p>With help from the answer given the final solution was as follows:</p>
<p>Add another button and hide it.</p>
<pre><code><input id="btnHdn" runat="server" type="button" value="button" style="display:none;" />
</code></pre>
<p>Point the AnimationExtender to the hidden button so the firing of the unwanted click event never happens.</p>
<pre><code><cc1:AnimationExtender ID="aniExt" runat="server" TargetControlID="btnHdn">
</code></pre>
<p>Wire the javascript to the button you want to trigger the animation after the postback is complete.</p>
<pre><code><asp:ImageButton ID="btnShowList" runat="server" OnClick="btnShowList_Click" OnClientClick="linkPostback();" />
</code></pre>
<p>Add the required Javascript to the page.</p>
<pre><code>function linkPostback() {
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(playOpenAnimation)
}
function playOpenAnimation() {
var onclkBehavior = ind("ctl00_aniExt").get_OnClickBehavior().get_animation();
onclkBehavior.play();
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.remove_endRequest(playOpenAnimation)
}
</code></pre>
http://stackoverflow.com/questions/1288526/grouping-by-time-ranges-in-linq/1288694#1288694Comment by Dominic Godin on Grouping by Time ranges in LinqDominic Godin2009-08-17T16:04:56Z2009-08-17T16:04:56ZInspired thank youhttp://stackoverflow.com/questions/1288526/grouping-by-time-ranges-in-linq/1288567#1288567Comment by Dominic Godin on Grouping by Time ranges in LinqDominic Godin2009-08-17T15:29:49Z2009-08-17T15:29:49ZSorry this doesn't helphttp://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287470#1287470Comment by Dominic Godin on Handling null results with the Linq Average() methodDominic Godin2009-08-17T11:56:27Z2009-08-17T11:56:27ZThank you that's done it.http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287193#1287193Comment by Dominic Godin on Handling null results with the Linq Average() methodDominic Godin2009-08-17T11:26:16Z2009-08-17T11:26:16ZYes, the complier tells me the left operand will never be null as Value is not nullablehttp://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287217#1287217Comment by Dominic Godin on Handling null results with the Linq Average() methodDominic Godin2009-08-17T11:02:07Z2009-08-17T11:02:07ZSorry again. Tried them both. They still throw "The null value cannot be assigned to a member with type System.Decimal which is a non-nullable value type.." Exceptionhttp://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287217#1287217Comment by Dominic Godin on Handling null results with the Linq Average() methodDominic Godin2009-08-17T10:42:49Z2009-08-17T10:42:49ZThanks for the suggestion but still throws the same exception.http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287163#1287163Comment by Dominic Godin on Handling null results with the Linq Average() methodDominic Godin2009-08-17T10:41:59Z2009-08-17T10:41:59ZThanks but still no joy. Throws a "Could not format node 'OptionalValue' for execution as SQL."http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287193#1287193Comment by Dominic Godin on Handling null results with the Linq Average() methodDominic Godin2009-08-17T10:25:34Z2009-08-17T10:25:34Zselect t.Value ?? 0 doesn't compile as t.Value is a non-nullable int.http://stackoverflow.com/questions/1287146/handling-null-results-with-the-linq-average-method/1287163#1287163Comment by Dominic Godin on Handling null results with the Linq Average() methodDominic Godin2009-08-17T10:17:20Z2009-08-17T10:17:20ZSorry this doesn't work as Value is a non-nullable int.http://stackoverflow.com/questions/1267296/datacontractserializer-lists-and-web-servicesComment by Dominic Godin on DataContractSerializer Lists and Web ServicesDominic Godin2009-08-13T12:31:49Z2009-08-13T12:31:49ZI'm using fiddler to test this and the web service only understands the XML if all the xmlns data is stripped out and looks like my second XML examplehttp://stackoverflow.com/questions/1267296/datacontractserializer-lists-and-web-servicesComment by Dominic Godin on DataContractSerializer Lists and Web ServicesDominic Godin2009-08-13T12:24:14Z2009-08-13T12:24:14ZYep I simplified the XML to highlight the problem. It's xmlns:a="<a href="http://schemas.microsoft.com/2003/10/Serialization/Arrays"" rel="nofollow">schemas.microsoft.com/2003/10/…</a>;http://stackoverflow.com/questions/1267296/datacontractserializer-lists-and-web-servicesComment by Dominic Godin on DataContractSerializer Lists and Web ServicesDominic Godin2009-08-13T09:11:21Z2009-08-13T09:11:21ZAlso the web service is RESTfulhttp://stackoverflow.com/questions/1267296/datacontractserializer-lists-and-web-servicesComment by Dominic Godin on DataContractSerializer Lists and Web ServicesDominic Godin2009-08-13T08:59:39Z2009-08-13T08:59:39ZCheers guys but still doesn't answer my question. Why is the DataContractSerializer Serializing with a: in the lists but can not de-serialize it?http://stackoverflow.com/questions/1211671/encrypting-and-decrypting-xml-sent-and-received-by-restful-wcf-web-services/1211759#1211759Comment by Dominic Godin on Encrypting and Decrypting XML sent and received by RESTful WCF Web ServicesDominic Godin2009-07-31T11:18:57Z2009-07-31T11:18:57ZI'm not I'm using webHttpBinding. Thanks to the answer provider for the update. http://stackoverflow.com/questions/1211671/encrypting-and-decrypting-xml-sent-and-received-by-restful-wcf-web-services/1211759#1211759Comment by Dominic Godin on Encrypting and Decrypting XML sent and received by RESTful WCF Web ServicesDominic Godin2009-07-31T10:37:11Z2009-07-31T10:37:11ZTo be fair I added REST to the title after he answered, as I'm using webHttpBinding