Pure.Krome
|
Registered User
|
Just another djork trying to ply his art in this mad mad world.
|
|
2h |
comment |
Linq query with a Join, not returning the correct results. hmm. interesting :) I like this WhereIf extension method. Problem with this code is, with this part .WhereIf(gameType.HasValue, (x => x.GameType == <snip>)) won't/doesn't work .. because `x is representing a LogEntry .. which doesn't have a property called GameType ... that exists on a GameFile type. |
|
2h |
revised |
Linq query with a Join, not returning the correct results. Added missing variable name. |
|
4h |
asked | Linq query with a Join, not returning the correct results. |
|
7h |
answered | Why is this SQL not working as a stored procedure, but works fine as a regular query? |
|
Dec 14 |
awarded | ● Popular Question |
|
Dec 14 |
comment |
ROW_NUMBER() OVER Not Fast Enough With Large Result Set, any good solution? What version of Sql Server are you using? |
|
Dec 13 |
revised |
Linq to Sql not submitting changes to database file in console app Improved formatting. |
|
Dec 11 |
awarded | ● Popular Question |
|
Dec 11 |
comment |
Is there an in-memory provider for Entity Framework? Like 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 :) |
|
Dec 10 |
comment |
Is it possible to refactor this extension method? Well said Jon! That's exactly what i was thinking :) |
|
Dec 10 |
awarded | ● Nice Question |
|
Dec 10 |
comment |
Trying to save an object with the Entity Framework v4 - how? yeah. 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 :) |
|
Dec 10 |
awarded | ● Popular Question |
|
Dec 9 |
comment |
Is it possible to refactor this extension method? and +1 for a blog post :) i might also check out Laurnet's answer also.... |
|
Dec 9 |
comment |
TestInitialize gets fired for every test, in my Visual Studio unit tests? Cheers :) the 2x Class ones are what i need :) awesome. |
|
Dec 9 |
comment |
Is it possible to refactor this extension method? Thanks Jon for the prompt answer :) |
|
Dec 9 |
asked | Is it possible to refactor this extension method? |
|
Dec 9 |
asked | TestInitialize gets fired for every test, in my Visual Studio unit tests? |
|
Dec 9 |
revised |
Trying to save an object with the Entity Framework v4 - how? Bump. |
|
Dec 9 |
revised |
Trying to save an object with the Entity Framework v4 - how? added 4 characters in body |
|
Dec 8 |
asked | Trying to save an object with the Entity Framework v4 - how? |
|
Dec 8 |
accepted | Need some help with a custom ASP.NET MVC IExceptionFilter |
|
Dec 8 |
comment |
ASP.NET MVC - Controllers Not Recognized Can you please tell us what the setup is? IIS6 or 7? what version of MVC? 1 or 2? |
|
Dec 6 |
comment |
Serving a custom HttpHandler files with Cassini in Visual Studio 2010 I 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. |
|
Dec 6 |
comment |
How to let SQL Server know not to use Cache in Queries? @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). |
|
Dec 6 |
revised |
is there a popular C# library for working HTTP? Eg simplifing working with httpwebrequest etc Fixed busted link. |
|
Dec 4 |
awarded | ● Popular Question |
|
Dec 4 |
awarded | ● Notable Question |
|
Nov 30 |
comment |
Spatial data types support in Linq2Sql or EF4 This has been something that i've been playing / doing, with L2S. |
|
Nov 30 |
comment |
What spatial SRID is this? (trying to convert a .shp file to WSG84) I think I ended up using 6643 ... but if FME say's it's 4283, then i'll roll with that :) |
|
Nov 30 |
awarded | ● Notable Question |
|
Nov 30 |
comment |
Visual Studio 2008 “randomly” hangs on test run I'm also getting this with VS2010 B2 now :( Never with VS2008 .... |
|
Nov 29 |
comment |
Entity Framework v4 - what’s the difference between POCO vs Code-Only ? Can you please give an example? |
|
Nov 28 |
revised |
Entity Framework v4 - what’s the difference between POCO vs Code-Only ? added 49 characters in body; edited tags |
|
Nov 28 |
asked | Entity Framework v4 - what’s the difference between POCO vs Code-Only ? |
|
Nov 27 |
revised |
Can I do this with an IQueryable<T> ? added 4 characters in body |
|
Nov 27 |
comment |
Can I do this with an IQueryable<T> ? So what i really wanted to do, Marc, was to create an INLCUDE(string) extension method, and this will do a dataload for L2S and Include() in EF ... So you think it cannot be done? |
|
Nov 27 |
revised |
Can I do this with an IQueryable<T> ? edited body |
|
Nov 27 |
comment |
Can I do this with an IQueryable<T> ? Also Marc, i found this blog post by you, interesting and relevant to this question: marcgravell.blogspot.com/2009/02/… . Relating to this post, i think i'm trying to generate my own expression which will generate it's own SQL? (i hope i've used the correct terminology, here). |
|
Nov 27 |
revised |
Can I do this with an IQueryable<T> ? added 85 characters in body |
|
Nov 27 |
comment |
Can I do this with an IQueryable<T> ? Yep, you're missing something here. Type <T> is a POCO class. It knows nothing a persistence/repositories. IQueriable<T> can know about persistence/repositories, in each repository project/layer. As such, i'm hoping to generate a Queryable expression .. and each persistence project will have to explain how to impliment that Extension Method (keyword), against it's dependant repository. Eg. If the keyword is 'IWishIKnewHowToCode' .. then for a L2S repository against sql server, this would be a where clause. |
|
Nov 27 |
comment |
Can I do this with an IQueryable<T> ? I was hoping to NOT have the to provider known at this level, but implimented only INSIDE each providers namespace. Bascially, this extension method would be persistence ignorant and each persister/repository would then impliment the logic, how it see's fit. (my Take/Where examples where extream examples, used above .. by design). Does that make sense, Marc? (and thanks heaps for reading my question). |
|
Nov 27 |
revised |
Can I do this with an IQueryable<T> ? added 2 characters in body |
|
Nov 27 |
asked | Can I do this with an IQueryable<T> ? |
|
Nov 27 |
revised |
Update and Insert Stored Procedure added 93 characters in body |
|
Nov 27 |
comment |
Update and Insert Stored Procedure +1 for the MERGE syntax in Sql2008. |
|
Nov 26 |
revised |
.NET Resource Leak Gotchas added 2 characters in body |
|
Nov 23 |
asked | How can I do this Eager Loading (using the .Include() method) in this code? |
|
Nov 23 |
comment |
Can a SQL Server Trigger send me an email? Re: Triggers - yep. i know that, etc. etc. And this is only for deletes .. and only for some debugging purposes AND on some low activity tables AND sql email is async, i believe .. |
|
Nov 23 |
revised |
Can a SQL Server Trigger send me an email? edited body |
