Jacob Proffitt
|
Registered User
|
|
Dec 20 |
accepted | LINQ-to-Entities select clause containing non-EF method calls |
|
Dec 18 |
comment |
Scraping a Facebook App for Data I don't want data out of Facebook. Facebook doesn't have the data I want/need. They're just the gatekeeper to authenticate at the app I want to access. |
|
Dec 18 |
comment |
Scraping a Facebook App for Data I'm not sure what you mean, Brian. I don't need data from facebook itself, I want the data from the facebook app. The link you gave didn't have data about objects/methods/or creating. |
|
Dec 18 |
asked | Scraping a Facebook App for Data |
|
Dec 3 |
answered | LINQ variable to list of string without using column names? |
|
Nov 24 |
comment |
Linq to populate ActiveDirectory I'll second this from Marc--particularly the link to Managing Directory Security Principals in the .NET Framework 3.5. I love the System.DirectoryServices.AccountManagement namespace. |
|
Nov 24 |
comment |
Using LINQ to query/subquery multiple methods (Quartz.NET example for groups, jobs, and triggers) Not at all. Tell 'em all to vote for my answer :). |
|
Nov 24 |
accepted | Using LINQ to query/subquery multiple methods (Quartz.NET example for groups, jobs, and triggers) |
|
Nov 24 |
answered | Using LINQ to query/subquery multiple methods (Quartz.NET example for groups, jobs, and triggers) |
|
Nov 19 |
accepted | Entity Framework One-To-One Mapping Issues |
|
Nov 19 |
comment |
Active Directory Properties You're right. Just noticed that and was headed to correct when I saw your comment :). |
|
Nov 19 |
revised |
Active Directory Properties edited body; added 2 characters in body |
|
Nov 19 |
answered | Active Directory Properties |
|
Nov 19 |
answered | Entity Framework One-To-One Mapping Issues |
|
Nov 17 |
comment |
LINQ-to-Entities select clause containing non-EF method calls Right. LINQ to Entities holds everything as an expression tree that it will eventually use against the database only when it is actually iterated. It's "dumb" that way, but that's because, as Alex says, distributed queries is an incredibly hard problem to solve when things get even a little bit complex. Know that, however, you can use iteration as your bookmark to pull the data to the client. |
|
Nov 17 |
answered | LINQ-to-Entities select clause containing non-EF method calls |
|
Nov 11 |
accepted | Is there a way to create an ADO.NET connection and ignore the ambient Transaction? |
|
Oct 31 |
comment |
Designer-friendly views in Asp.Net MVC Not a bad idea. I suppose you could put your interpreter in the runtime page lifecycle, but since it's a one-way, one-time process it's probably best to have the extra step to deployment. |
|
Oct 30 |
comment |
Designer-friendly views in Asp.Net MVC Absolutely. Html/CSS etc. is what designers do. What I don't want them to have to do is learn code APIs. |
|
Oct 30 |
comment |
Designer-friendly views in Asp.Net MVC The difference between Url.Action and Html.ActionLink is one of taste, I think. Either one will require designers learning a programming API and neither addresses the added pain of Html.RenderPartial and learning the difference between <% and <%= (and bugs where you add or leave off the ;). For my purposes, this is functionally equivalent to what I want to avoid. |
|
Oct 29 |
comment |
Designer-friendly views in Asp.Net MVC You're right, Charles, Spark looks like it can provide what I want. It's a little intrusive, but that may simply be a consequence of what I want... |
|
Oct 29 |
comment |
Designer-friendly views in Asp.Net MVC I want as little friction for designers as possible. "Better than what they're used to" isn't good enough. I'm fine dealing with breaking changes should they occur. If this is done right (i.e. centralized in something easily modified) a little upgrade pain is preferable to designer re-training. |
|
Oct 29 |
comment |
Designer-friendly views in Asp.Net MVC I don't want clueless designers. I just don't want to force them to learn developing while they're at it. |
|
Oct 29 |
asked | Designer-friendly views in Asp.Net MVC |
|
Oct 28 |
comment |
How do you save a Linq object if you don’t have its data context? Depends. In most cases, the unnecessary round trip is well worth both the clarity of the code and the opportunity to pre-screen for concurrency problems. |
|
Oct 28 |
comment |
How do you save a Linq object if you don’t have its data context? It does do a round trip. Since that wasn't a concern in the question, I didn't treat it as one. In most cases, it's well worth the expense for the sake of both the clarity of the code and the ability to be able to pre-screen concurrency issues. |
|
Oct 27 |
comment |
How do you save a Linq object if you don’t have its data context? You seriously went and serialized the object to get rid of the tracking info when all you had to do was a Refresh? Did you not bother reading new answers? |
|
Oct 27 |
comment |
How do you save a Linq object if you don’t have its data context? In further testing, it still works if I omit the context.ObjectTrackingEnabled = false; on the initial read. The key seems to be attach and refresh. |
|
Oct 27 |
answered | How do you save a Linq object if you don’t have its data context? |
|
Oct 22 |
comment |
“The specified domain either does not exist or could not be contacted” Sure thing. I love that namespace. |
|
Oct 22 |
accepted | “The specified domain either does not exist or could not be contacted” |
|
Oct 21 |
accepted | How to list all computers and the last time they were logged onto in AD? |
|
Oct 21 |
answered | “The specified domain either does not exist or could not be contacted” |
|
Oct 21 |
answered | How to list all computers and the last time they were logged onto in AD? |
|
Oct 15 |
answered | linq grouping by custom class |
|
Oct 10 |
comment |
A cumbersome linq query Interesting. I wondered if it would because they are essentially equivalent (in this query case) and that's more or less what query planning is all about. The set operations IN and EXISTS are such useful set operations that I wish more query providers took the time to get them right. |
|
Oct 10 |
comment |
A cumbersome linq query I went for an IN rather than EXISTS. Cool. No idea which would be more performant, but interesting to see the difference. |
|
Oct 10 |
answered | A cumbersome linq query |
|
Oct 6 |
comment |
LINQ sorting special characters first? Cool. Good to know, dahlbyk. |
|
Oct 6 |
answered | LINQ sorting special characters first? |
|
Oct 6 |
answered | Nested Linq to created multiple class objects |
|
Sep 30 |
answered | How do I group by Events by year using a single LINQ query? |
|
Sep 17 |
comment |
Linq to SQL: Multi-table join return type not generated by dbml Correct. It'd retrieve all the values together. |
|
Sep 17 |
comment |
LINQ to SQL complex query problem Ah. I've made another answer modification that moves the calculation into a property of Principal. |
|
Sep 17 |
revised |
LINQ to SQL complex query problem Make compatible with binding to a DataGrid |
|
Sep 17 |
comment |
LINQ to SQL complex query problem I changed my answer to doing the processing on the client. I'm not sure it'll be valid for your situation, but it should work for real this time... :) |
|
Sep 17 |
revised |
LINQ to SQL complex query problem added 645 characters in body |
|
Sep 17 |
comment |
LINQ to SQL complex query problem I see. It's more about p.Scale being an outside reference than about having multiple columns, then. |
|
Sep 17 |
answered | Linq to SQL: Multi-table join return type not generated by dbml |
|
Sep 16 |
answered | LINQ to SQL complex query problem |
