User Pure.Krome - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T22:54:30Zhttp://stackoverflow.com/feeds/user/30674http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1932035/linq-query-with-a-join-not-returning-the-correct-results1Linq query with a Join, not returning the correct results.Pure.Krome2009-12-19T05:13:06Z2009-12-19T15:14:50Z
<p>Hi Folks,</p>
<p>i've got the following code, which compiles but doesn't retrieve the correct results.</p>
<p>I'm trying to retrieve all the Banned log entries for people who have been recorded at cheating on a gaming server.</p>
<p>The database (in this case, two IList tables) has two simple <em>tables</em>. </p>
<ul>
<li>GameFiles : the game which has a log file .. which we parse.</li>
<li>LogEntries : an individual entry in a log file. Each game file has mother-bucket load of log entries.</li>
</ul>
<p>So this is a simple 1 to many relationship.</p>
<p>Currently it's retrieving all the results for GameType.BattleField2, but not for GameType.CallOfDuty4. I have confirmed that the IList gameFiles does contain some data for GameType.BattleField2 and for GameType.CallOfDuty4. I have also confirmed that each of those files has log entries.</p>
<p>So, can someone have a look at this linq and tell me what i've done wrong?</p>
<pre><code>public IList<LogEntry> BannedEntries(GameType? gameType)
{
var query = from l in _logEntryRepository.GetLogEntries()
join g in _gamefileRepository.GetGameFiles()
on l.GameFileId equals g.GameFileId into JoinedResult
from x in JoinedResult.DefaultIfEmpty()
select new
{
LogEntry = l,
GameFile = x
};
if (gameType.HasValue)
{
query = from q in query
where q.GameFile.GameType == gameType
select q;
}
// Now retrieve only LogEntries.
return (from q in query
where q.LogEntry.EventType == EventType.BannableViolation
select q.LogEntry)
.ToListIfNotNullOrEmpty();
}
</code></pre>
http://stackoverflow.com/questions/1931669/why-is-this-sql-not-working-as-a-stored-procedure-but-works-fine-as-a-regular-qu/1931734#19317341Answer by Pure.Krome for Why is this SQL not working as a stored procedure, but works fine as a regular query?Pure.Krome2009-12-19T02:24:36Z2009-12-19T02:24:36Z<p>I work with Lat's and Long's all the time - and I used to have DECIMAL(18,15) as the datatype.</p>
<p>I also had this problem :(</p>
<p>For me, it was a LOCALIZATION issue -> when a user from a non en-us/en-gb, etc.. location hit my site, the PERIOD was replaced with a COMMA. so i was trying to pass in 123,111 for a decimal value. fail. This means that, in my .NET application, the current thread's CultureInfo was getting auto set to the locale of the <em>users connection</em> (eg. <code>es</code> for spain, etc).</p>
<p>.<br>
<em>(for a .NET product/project)....</em></p>
<p>Try making sure u set the thread's cultureinfo to en-gb (that IS proper english, after all .. swipe!) and then seeing if the stored proc now works. </p>
<p>Too me -aaaaaagggggeeeeesssssss- to fix that bug :) u see, it always worked on my local machine (en-au) and as a query ... :)</p>
<p>good luck :)</p>
http://stackoverflow.com/questions/257906/ms-sql-server-2008-how-can-i-log-and-find-the-most-expensive-queries12MS SQL Server 2008 - How Can I Log and Find the Most Expensive Queries?Pure.Krome2008-11-03T04:02:56Z2009-12-12T02:16:53Z
<p>Hi folks</p>
<p>The activity monitor in sql2k8 allows us to see the most expensive queries. Ok, that's kewl, but is there a way I can log this info or get this info via query analyser? I don't really want to have the Sql Management console open and me looking at the activity monitor dashboard.</p>
<p>I want to figure out which queries are poorly written/schema is poorly designed, etc.</p>
<p>Thanks heaps for any help!</p>
http://stackoverflow.com/questions/352458/tiger-lines-or-shapefiles-of-usa-states-and-cities1Tiger/Lines or shapefiles of USA states and cities?Pure.Krome2008-12-09T11:34:34Z2009-12-11T13:26:34Z
<p>Hi folks,</p>
<p>i've been asked to generate some demographic reports (crime rates, birth/deaths, etc) based on state and cities for the USA. I have all the demographic data (provided by our client) but can't seem to find any places which have the boundaries (read: LAT/LONG's) of the USA States and their cities.</p>
<p>Our data are Lat/Long points of data (eg. a crime, a birth, etc) and we want to get some mapped reports and also datamine using Sql server (we're using MS Sql 2008, but that shouldn't impact this question).</p>
<p>So .. can anyone direct me to where there are some <em>state and city boundary sources</em>? I know our government has all this information available for free at the <a href="http://www.census.gov/" rel="nofollow">US Census Bureau</a>, but i can't seem to understand where it's found and how to digest this info.</p>
<p>I'm assuming that this info will be in the form of lat/long polygons (eg. a shapefile, etc) which i can then import into the DB and mine away.</p>
<p>Can anyone help, please?</p>
http://stackoverflow.com/questions/1873264/is-it-possible-to-refactor-this-extension-method17Is it possible to refactor this extension method?Pure.Krome2009-12-09T11:25:02Z2009-12-11T00:02:25Z
<p>I have the following extension method:</p>
<pre><code>public static void ThrowIfArgumentIsNull<T>(this T value, string argument)
where T : class
{
if (value == null)
{
throw new ArgumentNullException(argument);
}
}
</code></pre>
<p>and this is an example of its usage....</p>
<pre><code>// Note: I've poorly named the argument, on purpose, for this question.
public void Save(Category qwerty)
{
qwerty.ThrowIfArgumentIsNull("qwerty");
....
}
</code></pre>
<p>works 100% fine.</p>
<p>But, I don't like how I have to provide the name of the variable, just to help my exception message.</p>
<p>I was wondering if it's possible to refactor the extension method, so it could be called like this...</p>
<pre><code>qwerty.ThrowIfArgumentIsNull();
</code></pre>
<p>and it automatically figures out that the name of the variable is 'qwerty' and therefore uses that as the value for the ArgumentNullException.</p>
<p>Possible? I'm assuming reflection could do this?</p>
http://stackoverflow.com/questions/918885/need-help-partitioning-a-field-on-a-sql-2008-table-to-a-different-filegroup0Need help partitioning a field on a sql 2008 table to a different filegroupPure.Krome2009-05-28T02:03:27Z2009-12-10T14:23:07Z
<p>Hi folks,
in a previous question i asked, the suggested answer was for me to partition my field onto another Filegroup, keeping the field in the same table.</p>
<p>I'm not sure how to do this.</p>
<p>I've tried to google for things like partition table, partition view, etc. Could anyone provide me with some links or some sample sql code?</p>
<p>DB Server is Sql 2008.</p>
<h3>Table Schema</h3>
<pre><code>FooId INT PK IDENTITY
Name VARCHAR(100) NOT NULL
Boo VARCHAR(100) NOT NULL
BlahId INT NOT NULL
Photo VARBINARY(MAX) <-- This field wants to go onto another filegroup.
Can be null.
</code></pre>
<p>cheers!</p>
http://stackoverflow.com/questions/1870533/trying-to-save-an-object-with-the-entity-framework-v4-how1Trying to save an object with the Entity Framework v4 - how?Pure.Krome2009-12-08T23:11:01Z2009-12-09T13:44:34Z
<p>Hi folks,</p>
<p>I've using <code>Entity Framework v4</code> (that comes with VS2010 Beta 2) + <code>POCO</code>'s. I can load the data from the db into the poco's perfectly.</p>
<p>Now, i have a single poco instance, and i don't know how to save it to the DB, using EF4. Can someone help please? I'm guessing it's because the EF4 doesn't know that the POCO has 'changed'? anyways, here's the code i was TRYING and it doesn't work. (it does an insert into the db, but doesn't update the POCO with the Identity value.)</p>
<p>(based upon the good ole Northwind database...)</p>
<pre><code>public void Save(Category category)
{
// Error handling ommited...
bool isInsert = category.CategoryId <= 0;
// Note: Category is a POCO, not an entity object.
Category newCategory = isInsert
? new Category()
: ((from l in Context.Categories
.WithCategoryId(category.CategoryId)
select l).SingleOrDefault() ?? new Category());
// Left 2 Right.
newCategory.Name = category.Name;
// continue setting the properties.
// Context is a private property, representing the EF context.
Context.LogEntries.AddObject(newLogEntry);
Context.SaveChanges();
}
</code></pre>
<p>This code is based on what I do with Linq-To-Sql (which works great!)
The general logic flow is :-</p>
<ol>
<li>Get existing object. if none exists, then create a new one.</li>
<li>set all the properties on this existing or new object. This UPDATES the state of the object. if there's anything that is changed, the object is now modified. otherwise it's new.</li>
<li>save object.</li>
</ol>
<p>So, can i repeat this concept with EF4?</p>
<p>cheers :)</p>
http://stackoverflow.com/questions/1873191/testinitialize-gets-fired-for-every-test-in-my-visual-studio-unit-tests0TestInitialize gets fired for every test, in my Visual Studio unit tests?Pure.Krome2009-12-09T11:12:35Z2009-12-09T12:25:30Z
<p>Hi folks, </p>
<p>i'm using Visual Studio 2010 Beta 2. I've got a single <code>[TestClass]</code>, which has a [TestInitialize], <code>[TestCleanup]</code> and a few <code>[TestMethods]</code>.</p>
<p>Every time a test method is ran, the initialize and cleaup methods are ALSO ran!</p>
<p>I was under the impression that the <code>[TestInitialize]</code> & <code>[TestCleanup]</code> should only be ran once, per local test run.</p>
<p>Is that correct? If not, what is the proper way to do this?</p>
http://stackoverflow.com/questions/432510/whats-the-best-way-to-save-a-one-to-many-relationship-in-linq2sql2What's the best way to save a one-to-many relationship in Linq2Sql?Pure.Krome2009-01-11T07:30:09Z2009-12-04T02:00:04Z
<p>Hi folks,</p>
<p>I'm trying to figure out the best way to save a simple one-to-many relationship in Linq2Sql.</p>
<p>Lets assume we have the following POCO model (pseduo code btw):</p>
<p><em>Person has zero to many Vechicles.</em></p>
<pre><code>class Person
{
IList<Vehicle> Vehicle;
}
class Vehicle
{
string Name;
string Colour;
}
</code></pre>
<p>Now, when i save a Person, i pass that poco object to the repository code (which happens to be L2S). I can save the person object fine. I usually do this.</p>
<pre><code>using (Db db = new Db())
{
var newPerson = db.People.SingleOrDefault(p => p.Id == person.Id) ?? new SqlContext.Person();
// Left to right stuff.
newPerson.Name = person.Name;
newPerson.Age = person.Age;
if (newPerson.Id <= 0)
db.People.InsertOnSubmit(newPerson);
db.SubmitChanges();
}
</code></pre>
<p>i'm not sure where and how i should handle the list of vehicles the person might have? any suggestions?</p>
http://stackoverflow.com/questions/1811843/entity-framework-v4-whats-the-difference-between-poco-vs-code-only1Entity Framework v4 - what's the difference between POCO vs Code-Only ?Pure.Krome2009-11-28T07:12:53Z2009-11-30T18:32:38Z
<p>Hi folks,</p>
<p>i'm under the impression that</p>
<ul>
<li>EF with POCO: allows you to map your own POCO's to the entities on the model (.edmx).</li>
<li>EF Code-Only: <em>no</em> edmx / model designer (ie. CSDL/SSDL/MSL (collectively EDMX) metadata). Still POCO's but the mappings, relationships, navigation, etc are all <em>manually</em> coded (hence the code-only, description).</li>
</ul>
<p>If this description of the two concepts is (more or less) correct, why would someone what to do a Code-Only instead of EF with POCO?</p>
<p>Both are doing POCO's, but the 2nd one has the extra burden of having to also do the mapping, manually?</p>
http://stackoverflow.com/questions/1704936/what-spatial-srid-is-this-trying-to-convert-a-shp-file-to-wsg841What spatial SRID is this? (trying to convert a .shp file to WSG84)Pure.Krome2009-11-10T00:36:40Z2009-11-30T06:50:27Z
<p>Hi folks,</p>
<p>I'm trying to import some Shapefile mapping data into Sql2008. Before I do that, I need to convert it to <code>WGS84 / SRID 4326</code>, because all my existing data is in this format.</p>
<p>This is the source file info:</p>
<pre><code>GEOGCS["GCS_GDA_1994",DATUM["D_GDA_1994",
SPHEROID["GRS_1980",6378137,298.257222101]],
PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]]
</code></pre>
<p>I've tried googling for this and haven't had too much luck.
Secondly, I've tried to check the <code>spatial_reference_systems</code> table and I can't see it in there.</p>
<p>eg. <code>SELECT * from sys.spatial_reference_systems</code></p>
<p>So, can anyone help me? I can't covert it to <code>SRID 4326</code> if i don't know it's current SRID.</p>
<h3>UPDATE 1</h3>
<p>I found <a href="http://www.ga.gov.au/mapspecs/250k100k/appendix%5Fm.jsp" rel="nofollow">this page</a> which explains the tech specs of GDA 1994 .. but doesn't hint at any SRID number... ???</p>
<h3>UPDATE 2</h3>
<p><a href="http://spatialreference.org/ref/?search=GCS%5FGDA%5F1994" rel="nofollow">This search result page</a> also has some interesting results. From here, if you click on the <a href="http://spatialreference.org/ref/sr-org/6643/" rel="nofollow">SR-ORG:6643: Australia Albers Equal Area Conic</a> link, it explains that datum .. and it's pretty much identical to the one I'm searching for. This means the SRID is 6643. </p>
<p>So is that the answer?</p>
http://stackoverflow.com/questions/1806856/can-i-do-this-with-an-iqueryablet1Can I do this with an IQueryable<T> ?Pure.Krome2009-11-27T05:05:10Z2009-11-27T06:33:39Z
<p>Hi folks,</p>
<p>is it possible to add an extension method to <code>IQueryable<T></code> and then, for my Linq2Sql or EF or NHibernate or LinqToObjects, define it's functionality / how each repository will impliment this method / translate this method to some sql?</p>
<p>For example, imagine I want the following :-</p>
<pre><code>var result = (from q in db.Categories()
where q.IWishIKnewHowToCode("hi")
select q).ToList();
</code></pre>
<p>now, the code for the extension method <code>IWishIKnewHowToCode()</code> will differ when it's L2S, compared to EF or LinqToObjects, etc.</p>
<p>I'm not talking about a Pipes and Filters, here. That I know how to do that.</p>
<p>So imagine that, if this was L2S, then that method would do a linq <code>Where</code> clause but if the repository was .. say ... LinqToObjects, it would do a <code>Take(10)</code>.</p>
<p>Is this possible?</p>
<p>(I'm not too sure what it's officially called ... about what I'm wanting to do)</p>
http://stackoverflow.com/questions/365249/when-an-asp-net-system-web-httpresponse-end-is-called-the-current-thread-is-ab3When an ASP.NET System.Web.HttpResponse.End() is called, the current thread is aborted?Pure.Krome2008-12-13T14:15:48Z2009-11-25T13:10:06Z
<p>Hi folks,</p>
<p>when a System.Web.HttpResponse.End() is called a System.Thread.Abort is being fired, which i'm guessing is (or fires) an exception? I've got some logging and this is being listed in the log file...</p>
<p>A first chance </p>
<pre><code>exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
12/14/2008 01:09:31::
Error in Path :/authenticate
Raw Url :/authenticate
Message :Thread was being aborted.
Source :mscorlib
Stack Trace : at System.Threading.Thread.AbortInternal()
at System.Threading.Thread.Abort(Object stateInfo)
at System.Web.HttpResponse.End()
at DotNetOpenId.Response.Send()
at DotNetOpenId.RelyingParty.AuthenticationRequest.RedirectToProvider()
at MyProject.Services.Authentication.OpenIdAuthenticationService.GetOpenIdPersonaDetails(Uri serviceUri) in C:\Users\Pure Krome\Documents\Visual Studio 2008\Projects\MyProject\Projects\Services\Authentication\OpenIdAuthenticationService.cs:line 108
at MyProject.Mvc.Controllers.AuthenticationController.Authenticate() in C:\Users\Pure Krome\Documents\Visual Studio 2008\Projects\MyProject\Projects\MVC Application\Controllers\AuthenticationController.cs:line 69
TargetSite :Void AbortInternal()
A first chance exception of type 'System.Threading.ThreadAbortException' occurred in Ackbar.Mvc.DLL
An exception of type 'System.Threading.ThreadAbortException' occurred in Ackbar.Mvc.DLL but was not handled in user code
</code></pre>
<p>Is this normal behavior and is it possible to gracefully abort instead of (what looks like) a sudden abrupt abort?</p>
<h2>Update</h2>
<p>So far it the common census that it's <a href="http://msdn.microsoft.com/en-us/library/system.web.httpresponse.end.aspx" rel="nofollow">by design</a>. So i'm wondering if it's possible we could take this question and see if we could tweak the code to make it not feel like we're ending the thread <em>prematurely</em> and gracefully exit ... Possible? Code examples?</p>
http://stackoverflow.com/questions/1419414/need-some-help-with-a-custom-asp-net-mvc-iexceptionfilter0Need some help with a custom ASP.NET MVC IExceptionFilterPure.Krome2009-09-14T02:06:29Z2009-11-25T11:00:04Z
<p>Hi folks,</p>
<p>i'm trying to make my own ExceptionFilter. Out of the box, ASP.NET MVC comes with the [HandleError] attribute. This is great -> but it returns some html error View.</p>
<p>As such, I'm wanting to return some json error message. So i'm making my own.</p>
<p>Now, everything works great until i test my url. I keep getting an error. this is the message....</p>
<pre><code>C:\Temp\curl-7.19.5>curl -i http://localhost:6969/search/foo?name=1234&key=test1xxx
HTTP/1.1 401 Unauthorized
Server: ASP.NET Development Server/9.0.0.0
Date: Mon, 14 Sep 2009 01:54:52 GMT
X-AspNet-Version: 2.0.50727
X-AspNetMvc-Version: 1.0
Cache-Control: private
Content-Type: application/json; charset=utf-8
Content-Length: 6
Connection: Close
"Hi StackOverflow"'key' is not recognized as an internal or external command,
operable program or batch file.
C:\Temp\curl-7.19.5>
</code></pre>
<p>Ok - that makes no sense. Lets let at some code to explain what i'm trying to do, then...</p>
<pre><code>public class HandleErrorAsJson : FilterAttribute, IExceptionFilter
{
public void OnException(ExceptionContext filterContext)
{
// Snip normal checks and stuff...
// Assume we've figured out the type of error this is.
// I'm going to hardcode it here, right now.
int statusCode = 401;
string message = "Hi StackOverflow";
// Now prepare our json output.
filterContext.Result = new JsonResult
{
Data = message
};
// Prepare the response code.
filterContext.ExceptionHandled = true;
filterContext.HttpContext.Response.Clear();
filterContext.HttpContext.Response.StatusCode = statusCode;
}
}
</code></pre>
<p>So that's my code .... and it's sorta working but it's not.</p>
<p>What does this 'key' thing mean? what have i missed, trying to do?</p>
<p>Please help!</p>
http://stackoverflow.com/questions/1781738/how-can-i-do-this-eager-loading-using-the-include-method-in-this-code0How can I do this Eager Loading (using the .Include() method) in this code?Pure.Krome2009-11-23T08:14:38Z2009-11-23T09:09:21Z
<p>Hi folks,</p>
<p>I have a very simple repository I'm playing around with, using Entity Framework v4 that comes with VS2010 Beta 2.</p>
<p>I'm trying to dynamically include the Include method, if a user optionally asks for it.</p>
<p>eg.</p>
<pre><code>Public IQueryable<Foo> GetFoos(bool includeBars)
{
var entites = new Entities("... connection string ... ");
var query = from q in entities.Foos
select q;
if (includeBars)
{
// THIS IS THE PART I'M STUCK ON.
// eg. query = from q in query.Include("Bars") select q;
}
return (from q in query
select new Core.Foo
{
FooId = q.FooId,
CreatedOn = q.CreatedOn
});
}
</code></pre>
<p>Can anyone please help?</p>
http://stackoverflow.com/questions/1780486/can-a-sql-server-trigger-send-me-an-email2Can a SQL Server Trigger send me an email?Pure.Krome2009-11-23T00:01:59Z2009-11-23T01:12:30Z
<p>I wish to send an email from a <code>Trigger</code>, on my SQL Server 2008 machine. The data of the email will be, basically, some of the Trigger information.</p>
<p>Can someone provide some simple/sample code on how to do this, please? E.g. what's the system stored procedure called? Etc.</p>
<p>I've not set up any SQL mail and stuff, so I'm guessing it's built in and I can leverage that. But just to be sure: do I need to install any extra software on the server?</p>
http://stackoverflow.com/questions/918607/most-efficient-design-to-search-for-this-data-in-my-database0Most efficient design to search for this data in my database?Pure.Krome2009-05-28T00:19:06Z2009-11-20T17:19:33Z
<p>Hi folks,</p>
<p>I have the following database tables and a view which <em>represents</em> that data. The tables are <em>heirachial</em> (if that is how u describe it) :-</p>
<blockquote>
<p>EDIT: I've replace my 3 tables with
FAKE table names/data (for this post)
because I'm under NDA to not post
anything about out projects, etc. So
yeah.. I don't really save people
names like this :)</p>
</blockquote>
<h3>FirstNames</h3>
<pre><code>FirstNameId INT PK NOT NULL IDENTITY
Name VARCHAR(100)
</code></pre>
<h3>MiddleNames</h3>
<pre><code>MiddleNameId INT PK NOT NULL IDENTITY
Name VARCHAR(100) NOT NULL
FirstNameId INT FK NOT NULL
</code></pre>
<h3>Surnames</h3>
<pre><code>SurnameId INT PK NOT NULL IDENTITY
Name VARCHAR(100) NOT NULL
FirstNameId INT FK NOT NULL
</code></pre>
<p>So, the firstname is the parent table with the other two tables being children.</p>
<p>The view looks like...</p>
<h3>PersonNames</h3>
<pre><code>FirstNameId
FirstName
MiddleNameId
MiddleName
SurnameId
Surname
</code></pre>
<p>Here's some sample data.</p>
<pre><code>FNID FN MNID MN SNID SN
-----------------------------------
1 Joe 1 BlahBlah 1 Blogs
2 Jane - - 1 Blogs
3 Jon - - 2 Skeet
</code></pre>
<p>Now here's the problem. <strong>How can i efficiently search for names on the view</strong>? I was going to have a Full Text Search/Catalogue, but I can't put that on a view (or at least I can't get it working using the GUI against a View).</p>
<p>EDIT #2: Here are some sample search queries :-</p>
<pre><code>exec uspSearchForPeople 'joe blogs' (1 result)
exec uspSearchForPeople 'joe' (1 result)
exec uspSearchForPeople 'blogs' (2 results)
exec uspSearchForPeople 'jon skeet' (1 result)
exec uspSearchForPeople 'skeet' (1 result)
</code></pre>
<p>Should i generate a new table with the full names? how would that look? </p>
<p>please help!</p>
http://stackoverflow.com/questions/1741806/how-do-i-extract-this-linqtosql-data-into-a-poco-object0How do I extract this LinqToSql data into a POCO object?Pure.Krome2009-11-16T12:12:22Z2009-11-17T12:10:08Z
<p>Hi folks,</p>
<p>with my Repository classes, I use <code>LinqToSql</code> to retrieve the data from the repository (eg. Sql Server 2008, in my example). I place the result data into a <code>POCO</code> object. Works great :)</p>
<p>Now, if my <code>POCO</code> object has a child property, (which is another <code>POCO</code> object or an IList), i'm trying to figure out a way to populate that data. I'm just not too sure how to do this.</p>
<p>Here's some sample code i have. Please note the last property I'm setting. It compiles, but it's not 'right'. It's not the POCO object instance .. and i'm not sure how to code that last line.</p>
<pre><code>public IQueryable<GameFile> GetGameFiles(bool includeUserIdAccess)
{
return (from q in Database.Files
select new Core.GameFile
{
CheckedOn = q.CheckedOn.Value,
FileName = q.FileName,
GameFileId = q.FileId,
GameType = (Core.GameType)q.GameTypeId,
IsActive = q.IsActive,
LastFilePosition = q.LastFilePosition.Value,
UniqueName = q.UniqueName,
UpdatedOn = q.UpdatedOn.Value,
// Now any children....
// NOTE: I wish to create a POCO object
// that has an int UserId _and_ a string Name.
UserAccess = includeUserIdAccess ?
q.FileUserAccesses.Select(x => x.UserId).ToList() : null
});
}
</code></pre>
<p>Notes:</p>
<ul>
<li>Database.Files => The File table.</li>
<li>Database.FilesUserAccess => the FilesUserAccess table .. which users have access to the GameFiles / Files table.</li>
</ul>
<h3>Update</h3>
<p>I've now got a suggestion to extract the children results into their respective <code>POCO</code> classes, but this is what the <code>Visual Studio Debugger</code> is saying the class is :-</p>
<p><img src="http://img693.imageshack.us/img693/1610/debuggervisualiser.png" alt="alt text"></p>
<p>Why is it a <code>System.Data.Linq.SqlClient.Implementation.ObjectMaterializer<..></code></p>
<p><code>.Convert<Core.GameFile></code> and not a <code>List<Core.GameFile></code> containing the <code>POCO's</code>?</p>
<p>Any suggestions what that is / what I've done wrong?</p>
<h3>Update 2:</h3>
<p>this is what i've done to extract the children data into their respective poco's..</p>
<pre><code>// Now any children....
UserIdAccess = includeUserIdAccess ?
(from x in q.FileUserAccesses
select x.UserId).ToList() : null,
LogEntries = includeUserIdAccess ?
(from x in q.LogEntries
select new Core.LogEntry
{
ClientGuid = x.ClientGuid,
ClientIpAndPort = x.ClientIpAndPort,
// ... snip other properties
Violation = x.Violation
}).ToList() : null
</code></pre>
http://stackoverflow.com/questions/1722211/does-anyone-know-how-to-send-a-message-to-msn-messenger1Does anyone know how to send a message to MSN Messenger?Pure.Krome2009-11-12T13:36:07Z2009-11-17T03:14:33Z
<p>Hi folks,</p>
<p>I'm trying to have my windows application send a message to two msn messenger accounts. So, I grabbed the code from the <a href="http://code.google.com/p/msnp-sharp/" rel="nofollow">MSNPSharp library</a> and had a look in that.</p>
<p>I can authenticate/sign in without a problem. But once i've done that, I have no idea how to send a simple text message to two other users.</p>
<p>Do those users need to be <em>approved</em> ?</p>
<p>Can someone help me please - maybe show some sample code?</p>
<p>cheers :)</p>
http://stackoverflow.com/questions/1501375/how-to-test-repository-pattern-with-ado-net-entity-framework/1737347#17373470Answer by Pure.Krome for How to test Repository Pattern with ADO.NET Entity Framework?Pure.Krome2009-11-15T11:54:47Z2009-11-15T11:54:47Z<p>Hi Geo, </p>
<p>I'll explain what I'm doing, why and how much milage I get out it.</p>
<p>First, I'm doing <em>exactly</em> what you are doing, regarding your repositories. Despite some namespace differences, this is what I also do:</p>
<ul>
<li>MyProject.Repositories.IUserRepository</li>
<li>MyProject.Repositories.Fake.UserRepository</li>
<li>MyProject.Repositories.SqlServer.UserRepository</li>
</ul>
<p>With my <em>fake</em> UserRepository, I also just create and populate a <code>private IEnumerable<User></code> collection (which is a <code>List<User></code>). Why do I have this? I use this repository for my <em>initial</em> day to day development (because it's fast -> no db access == quick!). Then i swap over the fake respitories for the sql repositories (ie chage my dependency injection (oooohhh!)). This is why this class/namespace exists, as opposed to using Mocks in my unit test for 'fake' stuff. (That happens, but under different circumstances).</p>
<p>With my sql server UserRepository, I use LinqToSql. With regards to you question, it's irrelivant that I'm using LinqToSql ... it could be any other database wrapper. The important thing here is that there's a 3rd party <em>something</em> which i'm <em>integrating</em> with.</p>
<p><hr></p>
<p>Ok, so from here, I need to make sure of two things</p>
<ol>
<li>The fake UserRepostiory works</li>
<li>The sql server UserRepository works.</li>
</ol>
<p>First up, most people don't create a unit test for a fake thing. It's a fake piece of turd, so why waste the energy? True --- except that I use that fake piece of turd in my day to day development (refer to my blarg about this, above). So i quickly whip up a few basic unit tests. NOTE: In <em>my eyes</em> these are unit tests, even though they are <code>repository</code> classes. Why? They aren't <em>intergrating</em> with a 3rd party/infrastructure.</p>
<p>Next (finally I get to the point), I do a seperate test class which is an Intergration Test. This is a unit test that will intergrate with something outside of the system. It could be the real Twitter api. It could be the real S3 Amazon api. Notice i used the word <em>real</em>. That's the key, here. I'm intergrating with a real service OUTSIDE of mine. As such -> it's slow. Anytime i need to leave my computer for some data, it's called <em>intergrating</em> and you automatically assume (and expect) it to be slow.</p>
<p>So here, i'm intergrating with a Database.</p>
<p>(Nae sayers, please don't Troll this with cheeky suggestions that you have the database on the same computer ... you're leaving your APPLICATION 'world').</p>
<p>Wow. this is some War-n-Peace novel .. time for some hard action, cock slappin code.
Lets bring it!</p>
<pre><code>namespace MyProject.Tests.Repositories.SqlServer
{
// ReSharper disable InconsistentNaming
[TestClass]
public class UserRepositoryTests : TestBase
{
[ClassInitialize]
public static void ClassInitialize(TestContext testContext)
{
// Arrange.
// NOTE: this method is inherited from the TestBase abstract class.
// Eg. protected IUserRepository =
// new MyProject.Respositories.SqlServer
// .UserRespository(connectionString);
InitializeSqlServerTestData();
}
[TestMethod]
public void GetFirst20UsersSuccess()
{
// Act.
var users = _users.GetUsers()
.Take(20)
.ToList();
// Assert.
Assert.IsNotNull(users);
Assert.IsTrue(users.Count() > 0);
}
}
}
</code></pre>
<p>Ok, lets run through this puppy.</p>
<p>First up, this is using Microsoft Unit Testing - built into VS2010 Beta2 or with the Team Foundation edition of VS2008 (or whatever that version is ... i just install the copy our work has purchased).</p>
<p>Second, whenever the class is first initialized (be it one test or many), it creates the <code>context</code>. In my case, my Sql Server UserRepository which will use a LinqToSql context. (Yours will be an EF context). This is the <em>Arrange</em> part of TDD.</p>
<p>Third, i call the method -> this is the <em>Act</em> part of TDD.</p>
<p>Last, I check if i got back what i expected -> this is the <em>Assert</em> part of TDD.</p>
<p><hr></p>
<p>What about updating the DB?</p>
<p>Just follow the same pattern except you might want to wrap your calling code in a transaction and the roll it back. Otherwise u might get 100's of rows of data which could possibly be the same. Downside to this? Any <code>identity</code> fields will not have all nice and pretty numbering sequence (becuase the rollback will 'use' that number). Doesn't make sence? don't worry. that's an advanced tip i thought i'd throw in to test you out, but it means diddly squat for this hellishly long post.</p>
<p><hr></p>
<p>so .. er.. yeah. that's what i do. Don't know if the Gods of Programming, on these forums, will flip and throw mud my way but I sorta like it and I'm hoping it might help ya.</p>
<p>HTH.</p>
http://stackoverflow.com/questions/1198182/msmq-and-polling-to-receive-messages0MSMQ and polling to receive messages?Pure.Krome2009-07-29T05:27:48Z2009-11-13T20:54:17Z
<p>Hi folks,</p>
<p>I've got a windows <em>service</em> that does some image conversion. It works by firing off when any file (in a particular folder) is renamed (ie. rename file watcher). Works great until I have a massive amount of images dumped (and renamed) in that folder. CPU redlines, etc..</p>
<p>So, I was going to change my code to use <strong>MSMQ</strong> to queue all the files that need to be converted. Fine. Everytime the file is renamed and the file watcher fires, i then add a new message to the queue. Kewl.</p>
<p>Problem is this -> <strong>how do i grab one message at a time from the queue?</strong></p>
<p><strike>Do I need to make a timer object that polls the queue every xxx seconds? Or is there a way to constantly keep peeking the first item in the queue. Once a message exists, extract it, process it, then continue (which .. means, keep peeking until the world blows up).</strike></p>
<p>I've wondered if i just need to put a while loop around the Receive method. Pseduo code is below (in Edit #2)...</p>
<p>Anyone have any experience with this and have some suggestions?</p>
<p>Thanks kindly!</p>
<h3>EDIT:</h3>
<p>If WCF is the way to go, can someone provide some sample code, etc instead?</p>
<h3>EDIT 2:</h3>
<p>Here's some pseudo code i was thinking off....</p>
<pre><code>// Windows service start method.
protected override void OnStart(string[] args)
{
// some initialisation stuf...
// Start polling the queue.
StartPollingMSMQ();
// ....
}
private static void StartPollingMSMQ()
{
// NOTE: This code should check if the queue exists, instead of just assuming it does.
// Left out for berevity.
MessageQueue messageQueue = new MessageQueue(".\\Foo");
while (true)
{
// This blocks/hangs here until a message is received.
Message message = messageQueue.Receive(new TimeSpan(0, 0, 1));
// Woot! we have something.. now process it...
DoStuffWithMessage(message);
// Now repeat for eva and eva and boomski...
}
}
</code></pre>
http://stackoverflow.com/questions/677499/how-to-map-form-values-to-an-object-for-asp-net-mvc-http-post-scenario1How to map form values to an object for ASP.NET MVC HTTP-Post scenario?Pure.Krome2009-03-24T13:53:37Z2009-11-13T15:54:13Z
<p>Hi folks, </p>
<p>i have a simple form for an ASP.NET MVC application. I have a form property that is named differently (for whatever reason) to the real property name.</p>
<p>I know there's <code>[Bind(Exlcude="", Include="")]</code> attribute, but that doesn't help me in this case. </p>
<p>I also don't want to have a <code>(FormsCollection formsCollection)</code> argument in the Action method signature.</p>
<p>is there another way I can define the mapping?</p>
<p>eg.</p>
<pre><code><%= Html.ValidationMessage("GameServer", "*")%>
</code></pre>
<p>results in ..</p>
<pre><code><select id="GameServer" name="GameServer">
<option value="2">PewPew</option>
</select>
</code></pre>
<p>this needs to map to..</p>
<pre><code>myGameServer.GameServerId = 2; // PewPew.
</code></pre>
<p>cheers!</p>
http://stackoverflow.com/questions/718400/trying-to-upload-a-file-with-asp-net-mvc2Trying to upload a file with ASP.NET MVCPure.Krome2009-04-05T05:32:27Z2009-11-10T22:56:47Z
<p>I am trying to upload a file with ASP.NET MVC.</p>
<p>The following code work perfectly fine:</p>
<pre><code>// Read in the image data.
byte[] binaryData = null;
HttpPostedFileBase uploadedFile = Request.Files["ImageFileName"];
if (uploadedFile != null &&
uploadedFile.ContentLength > 0)
{
binaryData = new byte[uploadedFile.ContentLength];
uploadedFile.InputStream.Read(binaryData,
0,
uploadedFile.ContentLength);
}
</code></pre>
<p>But what I am trying to do is use the new <code>FileCollectionModelBinder</code> found in the <em>futures</em> assembly.</p>
<p>I've found these two blog posts <a href="http://msmvps.com/blogs/luisabreu/archive/2009/03/17/the-mvc-framework-working-with-uploaded-files.aspx" rel="nofollow">here</a> and <a href="http://www.hanselman.com/blog/ASPNETMVCBetaReleasedCoolnessEnsues.aspx" rel="nofollow">here</a> explaining what to do. I follow these instructions but havne't had any luck -> the <code>file</code> object is always <code>null</code>.</p>
<p>Here is my method.</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Include = "Subject, Content")]
Post post,
HttpPostedFileBase file)
{
UpdateModel(post);
...
}
</code></pre>
<p>Notice how i'm trying to upload a file AND upload some post information, to a Post object.</p>
<p>Can anyone make any suggestions?</p>
<p>For the record, I have wired up the ModelBinder in my global.asax.cs. I've also made sure the form is a post with the enctype added:-</p>
<pre><code><form method="post" enctype="multipart/form-data" action="/post/create">
</code></pre>
http://stackoverflow.com/questions/765054/whens-the-earliest-i-can-access-some-session-data-in-global-asax2When's the earliest i can access some Session data in global.asax?Pure.Krome2009-04-19T08:10:41Z2009-11-10T18:45:36Z
<p>Hi folks,</p>
<p>i want to check if the Session contains some key/value data, in my global.asax. I'm not sure when the earliest possible time (and method name) is, to check this.</p>
<p>thanks :)</p>
http://stackoverflow.com/questions/551894/whats-the-best-way-to-store-co-ordinates-longitude-latitude-from-google-maps/1704982#17049821Answer by Pure.Krome for What's the best way to store co-ordinates (longitude/latitude, from Google Maps) in SQL Server?Pure.Krome2009-11-10T00:49:14Z2009-11-10T00:49:14Z<p>What you want to do is store the Latitude and Longitude as the new SQL2008 Spatial type -> GEOGRAPHY.</p>
<p>Here's a screen shot of a table, which I have.</p>
<p><img src="http://img20.imageshack.us/img20/6839/zipcodetable.png" alt="alt text"></p>
<p>In this table, we have two fields that store geography data.</p>
<ul>
<li>Boundary: this is the polygon that is the zip code boundary</li>
<li>CentrePoint: this is the Latitude / Longitude point that represents the visual middle point of this polygon.</li>
</ul>
<p>The main reason why you want to save it to the database as a GEOGRAPHY type is so you can then leverage all the SPATIAL methods off it -> eg. Point in Poly, Distance between two points, etc.</p>
<p>BTW, we also use Google's Maps API to retrieve lat/long data and store that in our Sql 2008 DB -- so this method does work.</p>
http://stackoverflow.com/questions/770722/return-multiple-results-in-linq2sql-without-a-stored-procedure1Return Multiple Results in Linq2Sql without a stored procedure?Pure.Krome2009-04-21T01:32:31Z2009-11-09T14:26:11Z
<p>Hi folks,</p>
<p>i would like to return two record sets from a simple database table with one Linq2Sql query. I know how to do it if this was using Linq2Sql calling a stored procedure, but I don't want to use a stored procedure. </p>
<h3>Is it possible to do it?</h3>
<p>I've <a href="http://tonesdotnetblog.wordpress.com/2008/07/23/linq-to-sql-batches-and-multiple-results-without-stored-procedures-by-tony-wright/" rel="nofollow">found an article here</a> that has a suggested solution, but i hate the idea of having to write up a massive amount of code to partially extend the current context?! like... OUCH!!!</p>
<p><em>Just doesn't seem... right ?</em></p>
<p>Is the suggestion in the article the only way to do it? Are there other ways (without using stored procedures and still using Linq2Sql) ?</p>
<p>Wish <a href="http://blogs.msdn.com/mattwar/" rel="nofollow">Matt Warren</a> was here to answer this :)</p>
<h3>EDIT</h3>
<p>I'm not asking about how to lazy-load / eager load (and using DataLoadOptions). That's a different concept.</p>
http://stackoverflow.com/questions/370524/trouble-with-structuremap-and-a-public-property-i-need-to-set1Trouble with StructureMap and a public property I need to setPure.Krome2008-12-16T05:20:51Z2009-11-09T10:19:29Z
<p>Hi folks,</p>
<p>I've got an interface which i've used <code>StructureMap</code> to <em>Dependency Inject</em>.</p>
<pre><code>public interface IFileStorageService
{
void SaveFile(string fileName, byte[] data);
}
</code></pre>
<p>The interface doesn't care WHERE the data is saved. Be it to the memory, a file, a network resource, a satellite in space....</p>
<p>So, i've got two classes that implement this interface; a <code>test class</code> and a <code>network file storage class</code> :-</p>
<pre><code>public class TestFileStorageService : IFileStorageService
{ ... etc ...}
public class NetworkFileStorageService : IFileStorageService
{
public string NetworkUnc { get; set; }
public void SaveFile(...);
}
</code></pre>
<p>Notice how my <code>NetworkFileStorageService</code> has a property? That class requires that value in it's implementation of the SaveFile method. </p>
<p>Well, i'm not sure how to define that property. </p>
<p>I thought i could hard code it where i define my dependency (eg. in my bootstrapper method -> <code>ForRequestedType<IFileStorageService></code>... etc) but the kicker is .. the business logic <em>DEFINES</em> the location. It's not static.</p>
<p>Finally, because i use interfaces in my logic, this property is not available.</p>
<p>Can anyone help?</p>
<p>If you can, image you want to save two files</p>
<ul>
<li>Name: Test1.bin; location: \server1\folder1</li>
<li>Name: Test2.bin; location: \server1\folder2</li>
</ul>
<p>cheers!</p>
http://stackoverflow.com/questions/1698379/how-can-i-do-this-with-the-c-new-process-object0How can i do this with the C# 'new Process' object.Pure.Krome2009-11-08T23:46:20Z2009-11-09T00:20:44Z
<p>Hi folks,</p>
<p>I wish to pass some data to the delegate method, of a <code>Process</code> object, when it fires the <code>Exited</code> event --- i'm not sure how.</p>
<p><hr></p>
<p>I've got some code (in a windows service) that is going to take a while .. so i'm forking off a new process to do it .. like ...</p>
<pre><code>string recipientEmail = "whatever@blah.com";
var commandProcess = new Process
{
StartInfo =
{
FileName = commandLine,
Arguments = commandArgs
}
};
commandProcess.Start();
</code></pre>
<p>Now, when this finishes, I wish to do some other stuff. For example, send an email.</p>
<p>Now, that's not too hard when we can :-</p>
<pre><code>commandProcess.EnableRaisingEvents = true;
// Method to handle when the process has exited.
commandProcess.Exited += CommandProcess_Exited;
</code></pre>
<p>Now, i'm not sure how i pass the variable <code>recipientEmail</code> to the method <code>CommandProcess_Exited</code> when the <code>Exited</code> event is fired. </p>
<p>eg method which the <code>CommandProcess_Exited</code> method will call :-</p>
<pre><code>private static void SendEmailToRecipient(string recipientEmail)
{
....
}
</code></pre>
<p>Is this possible?</p>
http://stackoverflow.com/questions/1677487/how-can-i-find-the-current-physical-path-where-a-custom-windows-service-resides2How can i find the current physical path where a custom windows service, resides?Pure.Krome2009-11-04T23:51:55Z2009-11-05T22:55:58Z
<p>Hi folks,</p>
<p>i have installed my own custom Windows Service. I need to find out the physical path, where the service exists.</p>
<p>eg. </p>
<pre><code>log4net.Config.XmlConfigurator.Configure(
new System.IO.FileInfo(<insert path here> + "log4net.config"));
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1677487/how-can-i-find-the-current-physical-path-where-a-custom-windows-service-resides/1678505#16785050Answer by Pure.Krome for How can i find the current physical path where a custom windows service, resides?Pure.Krome2009-11-05T05:18:55Z2009-11-05T22:55:58Z<p><strike>Not sure if this is the best answer ... but ...</p>
<pre><code>AppDomain.CurrentDomain.BaseDirectory
</code></pre>
<p>that worked ...
</strike></p>
<p>Works, but not the best answer :)</p>
http://stackoverflow.com/questions/1932035/linq-query-with-a-join-not-returning-the-correct-results/1932137#1932137Comment by Pure.Krome on Linq query with a Join, not returning the correct results.Pure.Krome2009-12-19T22:31:30Z2009-12-19T22:31:30Z@ PCambell - thanks for the code update. Still doesn't compile. I'm sure it's because the <i>x => x.<whatever></i> represents a logEntry variable .. which doesn't have a reference up to a GameFile..... ?? Maybe a JOIN is required?http://stackoverflow.com/questions/1932035/linq-query-with-a-join-not-returning-the-correct-resultsComment by Pure.Krome on Linq query with a Join, not returning the correct results.Pure.Krome2009-12-19T22:28:43Z2009-12-19T22:28:43Z@Mahesh - nope. if u try to do that, you will get a compiler error. I know .. cause that was what i tried, first :)http://stackoverflow.com/questions/1932035/linq-query-with-a-join-not-returning-the-correct-results/1932137#1932137Comment by Pure.Krome on Linq query with a Join, not returning the correct results.Pure.Krome2009-12-19T07:23:55Z2009-12-19T07:23:55Zhmm. interesting :) I like this WhereIf extension method. Problem with this code is, with this part <code>.WhereIf(gameType.HasValue, (x => x.GameType == <snip>)) won't/doesn't work .. because `x</code> is representing a LogEntry .. which doesn't have a property called <code>GameType</code> ... that exists on a <code>GameFile</code> type.http://stackoverflow.com/questions/1932035/linq-query-with-a-join-not-returning-the-correct-results/1932083#1932083Comment by Pure.Krome on Linq query with a Join, not returning the correct results.Pure.Krome2009-12-19T06:08:46Z2009-12-19T06:08:46ZYep, i can confirm that there are some EventType.BannableViolation for GameType.CallOfDuty4 and GameType.Battlefield2. I'm not sure why I would want to do what u suggested .. because I would prefer to filter them out BEFORE i retrieve the enumerated results ... ????http://stackoverflow.com/questions/1897436/rownumber-over-not-fast-enough-with-large-result-set-any-good-solutionComment by Pure.Krome on ROW_NUMBER() OVER Not Fast Enough With Large Result Set, any good solution?Pure.Krome2009-12-14T06:44:26Z2009-12-14T06:44:26ZWhat version of Sql Server are you using?http://stackoverflow.com/questions/575190/is-there-an-in-memory-provider-for-entity-frameworkComment by Pure.Krome on Is there an in-memory provider for Entity Framework?Pure.Krome2009-12-11T10:33:15Z2009-12-11T10:33:15ZLike you ended up doing, I've used interfaces to follow the Repository Pattern and the Unit Of Work pattern. Then, i have two namespaces -> EF and Fake. With my Fake repository, i just used IList<POCO> to store my stuff and leverage Linq to Objects to extract the data. Works great :)http://stackoverflow.com/questions/1873264/is-it-possible-to-refactor-this-extension-methodComment by Pure.Krome on Is it possible to refactor this extension method?Pure.Krome2009-12-10T10:44:29Z2009-12-10T10:44:29ZWell said Jon! That's exactly what i was thinking :)http://stackoverflow.com/questions/1870533/trying-to-save-an-object-with-the-entity-framework-v4-how/1873993#1873993Comment by Pure.Krome on Trying to save an object with the Entity Framework v4 - how?Pure.Krome2009-12-10T04:09:27Z2009-12-10T04:09:27Zyeah. ha! i didn't know it was that simple :) and now i'm using the Unit Of Work pattern, it's actually really really awesome :)http://stackoverflow.com/questions/1873264/is-it-possible-to-refactor-this-extension-method/1873295#1873295Comment by Pure.Krome on Is it possible to refactor this extension method?Pure.Krome2009-12-09T13:27:18Z2009-12-09T13:27:18Zand +1 for a blog post :) i might also check out Laurnet's answer also.... http://stackoverflow.com/questions/1873191/testinitialize-gets-fired-for-every-test-in-my-visual-studio-unit-tests/1873572#1873572Comment by Pure.Krome on TestInitialize gets fired for every test, in my Visual Studio unit tests?Pure.Krome2009-12-09T13:20:30Z2009-12-09T13:20:30ZCheers :) the 2x Class ones are what i need :) awesome.http://stackoverflow.com/questions/1873264/is-it-possible-to-refactor-this-extension-method/1873295#1873295Comment by Pure.Krome on Is it possible to refactor this extension method?Pure.Krome2009-12-09T11:32:32Z2009-12-09T11:32:32ZThanks Jon for the prompt answer :)http://stackoverflow.com/questions/1864380/asp-net-mvc-controllers-not-recognizedComment by Pure.Krome on ASP.NET MVC - Controllers Not RecognizedPure.Krome2009-12-08T03:34:17Z2009-12-08T03:34:17ZCan you please tell us what the setup is? IIS6 or 7? what version of MVC? 1 or 2?http://stackoverflow.com/questions/1855163/serving-a-custom-httphandler-files-with-cassini-in-visual-studio-2010/1856844#1856844Comment by Pure.Krome on Serving a custom HttpHandler files with Cassini in Visual Studio 2010Pure.Krome2009-12-06T23:28:42Z2009-12-06T23:28:42ZI was wondering if he was using .Less because of that post from Phil :) I've never heard of it until i read his post yesterday.http://stackoverflow.com/questions/1856966/how-to-let-sql-server-know-not-to-use-cache-in-queriesComment by Pure.Krome on How to let SQL Server know not to use Cache in Queries?Pure.Krome2009-12-06T23:26:58Z2009-12-06T23:26:58Z@Jvilata -> you would do this when u wish to fix up the raw performance for a stored procedure or query. The slowest time a query/sp is ran, is when it's first compiled because it's not cached ... and that's excluding whatever the query is suppose to do/return back. So if u can fix the performance of a query/sp when it hasn't been cached, then you know the worst case scenario for that query (more or less).http://stackoverflow.com/questions/1314523/spatial-data-types-support-in-linq2sql-or-ef4/1797509#1797509Comment by Pure.Krome on Spatial data types support in Linq2Sql or EF4Pure.Krome2009-11-30T23:13:56Z2009-11-30T23:13:56ZThis has been something that i've been playing / doing, with L2S.