User Jacob Proffitt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T13:34:13Zhttp://stackoverflow.com/feeds/user/1336http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1838858/linq-variable-to-list-of-string-without-using-column-names/1839034#18390340Answer by Jacob Proffitt for LINQ variable to list of string without using column names?Jacob Proffitt2009-12-03T10:26:49Z2009-12-03T10:26:49Z<p>A little creative reflection should do the trick.</p>
<pre><code>var courses = db.spFetchCourseInformation()
var values = courses.SelectMany(c => c.GetType().GetProperties() // gets the properties for your object
.Select(property => property.GetValue(c, null))); // gets the value of each property
List<string> stringValues = new List<string>(
values.Select(v => v == null ? string.Empty : v.ToString()) // some of those values will likely be null
.Distinct()); // remove duplicates
</code></pre>
http://stackoverflow.com/questions/1786643/using-linq-to-query-subquery-multiple-methods-quartz-net-example-for-groups-job/1787082#17870821Answer by Jacob Proffitt for Using LINQ to query/subquery multiple methods (Quartz.NET example for groups, jobs, and triggers)Jacob Proffitt2009-11-24T00:38:43Z2009-11-24T00:38:43Z<p>The key to doing this in LINQ is to understand that .Select is your friend--but a surly friend who might hit you. I kid. You can use Select and it's cousin SelectMany to transform your arrays on the fly.</p>
<pre><code>public IEnumerable<QuartzJob> GetQuartzInfo(IScheduler scheduler)
{
IEnumerable<QuartzJob> jobs = scheduler.JobGroupNames.SelectMany( // Using SelectMany because there is an IEnumerable<QuartzJob> for each group and we want to flatten that.
groupName => scheduler.GetJobNames(groupName).Select( // Returns an IEnumerable<QuartzJob> for each group name found.
jobName =>
// We're doing a lot in this new but essentially it creates a new QuartzJob for each jobName/groupName combo
new QuartzJob(new Guid(groupName), new Guid(jobName),
scheduler.GetTriggersOfJob(jobName, groupName).Select(trigger => trigger.Name) // This transforms the GetTriggersOfJob into an IEnumerable<string> for use in the constructor of QuartzJob
)));
return new List<QuartzJob>(jobs);
}
</code></pre>
<p>Or, if you prefer the inline query language it'd be a bit more readable and look like this:</p>
<pre><code>public IEnumerable<QuartzJob> GetQuartzInfo(IScheduler scheduler)
{
IEnumerable<QuartzJob> jobs = from groupName in scheduler.JobGroupNames
from jobName in scheduler.GetJobNames(groupName) // stacking the two froms is the equivalent of SelectMany because the first select is defaulted as the result of the second.
select new QuartzJob(new Guid(groupName), new Guid(jobName),
// this sub-select is to get just the IEnumerable<string> of trigger names needed for the constructor.
(from trigger in scheduler.GetTriggersOfJob(jobName, groupName)
select trigger.Name));
return new List<QuartzJob>(jobs);
}
</code></pre>
http://stackoverflow.com/questions/1761312/active-directory-properties/1761442#17614421Answer by Jacob Proffitt for Active Directory PropertiesJacob Proffitt2009-11-19T07:09:44Z2009-11-19T07:18:08Z<p>I much prefer using the System.DirectoryServices.AccountManagement namespace for this kind of thing (requires .Net 3.5 or higher, I think). Your call becomes much simpler with those objects:</p>
<pre><code>using (PrincipalContext pc = new PrincipalContext(ContextType.Domain, "Domain"))
{
UserPrincipal up = UserPrincipal.FindByIdentity(pc, "Domain\\User");
up.UserCannotChangePassword = false;
up.Save();
}
</code></pre>
http://stackoverflow.com/questions/1761362/entity-framework-one-to-one-mapping-issues/1761403#17614033Answer by Jacob Proffitt for Entity Framework One-To-One Mapping IssuesJacob Proffitt2009-11-19T07:00:37Z2009-11-19T07:00:37Z<p>For one-to-one relationships, EF expects that the tables are using the same primary key. And really, if it's a true one-to-one they probably <em>should</em>. So in your example, if you make UserID the primary key on the UserProfiles table, your one-to-one will work. </p>
http://stackoverflow.com/questions/1747123/linq-to-entities-select-clause-containing-non-ef-method-calls/1747509#17475091Answer by Jacob Proffitt for LINQ-to-Entities select clause containing non-EF method callsJacob Proffitt2009-11-17T09:10:12Z2009-11-17T09:10:12Z<p>The problem is that in using Linq's delayed execution, you really have to decide where you want the processing and what data you want to traverse the pipe to your client application. In the first instance, Linq resolves the expression and pulls all of the role data as a precursor to</p>
<pre><code>New.roles.ToDictionary(row => row.rolename, row => row.roleid);
</code></pre>
<p>At that point, the data moves from the DB into the client and is transformed into your dictionary. So far, so good.</p>
<p>The problem is that your second Linq expression is asking Linq to do the transform on the second DB <strong>using</strong> the dictionary <strong>on the DB</strong> to do so. In other words, it is trying to figure out a way to pass the entire dictionary structure to the DB so that it can select the correct ID value as part of the delayed execution of the query. I suspect that it would resolve just fine if you altered the second half to</p>
<pre><code>var roles = from rl in Old.userrolelinks
join r in Old.roles on rl.RoleID equals r.RoleID
where rl.UserID == userId
select r.RoleName;
var list = roles.ToDictionary(roleName => roleName, newRoles[roleName]);
</code></pre>
<p>That way, it resolves your select on the DB (selecting just the rolename) as a precursor to processing the ToDictionary call (which it should do on the client as you'd expect). This is essentially exactly what you are doing in your second example because AsEnumerable is pulling the data to the client before using it in the ToList call. You could as easily change it to something like</p>
<pre><code>var roles = from rl in Old.userrolelinks
join r in Old.roles on rl.RoleID equals r.RoleID
where rl.UserID == userId
select r;
var list = roles.AsEnumerable().Select(r => new Role { Name = r.RoleName, ID = newRoles[r.RoleName] });
</code></pre>
<p>and it'd work out the same. The call to AsEnumerable() resolves the query, pulling the data to the client for use in the Select that follows it.</p>
<p>Note that I haven't tested this, but as far as I understand Entity Framework, that's my best explanation for what's going on under the hood.</p>
http://stackoverflow.com/questions/1646730/designer-friendly-views-in-asp-net-mvc4Designer-friendly views in Asp.Net MVCJacob Proffitt2009-10-29T21:38:10Z2009-10-31T13:44:17Z
<p>I'm enjoying Asp.Net MVC and am looking to use it in an upcoming project. Part of the project, however, is an emphasis on being able to expose the project Views to designers for things like theming and so on. One problem I'm anticipating is that Asp.Net MVC views are rather developer-centric. I really don't want to have to educate designers on the intracies of <% vs. <%= let alone something like <% foreach ...</p>
<p>Take a typical MVC menu structure, for example.</p>
<pre><code><div id="menu">
<ul>
<li><%= Html.ActionLink("Home", "Index", "Main")%></li>
<li><%= Html.ActionLink("About", "About", "Main")%></li>
<li><% Html.RenderPartial("LogOnUserControl"); %></li>
</ul>
</div>
</code></pre>
<p>I'd much rather be able to tell designers to go with something like</p>
<pre><code><div id="menu">
<ul>
<li>{ActionLink "Home", "Index", "Main"}</li>
<li>{ActionLink "About", "About", "Main"}</li>
<li>{Partial "LogOnUserControl"}</li>
</ul>
</div>
</code></pre>
<p>Or</p>
<pre><code><div id="menu">
<ul>
<li><my:ActionLink text="Home" action="Index" controller="Main" /></li>
<li><my:ActionLink text="About" action="About" controller="Main" /></li>
<li><my:Partial name="LogOnUserControl" /></li>
</ul>
</div>
</code></pre>
<p>Yes, that last looks suspiciously like a raft of UserControls. Personally, I'm not a fan of actually using UserControls to do this if only because the rendering of those controls happens after pretty much everything else (as I understand it) and I'd prefer something that fits more in line with the MVC lifecycle. All I really need is a set of placeholders and a way to replace them with the relevant rendering.</p>
<p>So where's the best place to do so and what kind of trade-offs am I looking at here. I can imagine a couple of angles to come at this:</p>
<ul>
<li>A custom ViewPage class where I can override something relevant. ViewPage.RenderView or ViewPage.FrameworkInitialize, maybe, but how you get at the text from there I don't know.</li>
<li>Create a custom TextWriter and override ViewPage.CreateHtmlTextWriter that I can then intercept the text output for replacing stuff. This is pretty late in the cycle, though, and will mess with other custom filtering if I'm not careful.</li>
<li>Create my own IView and ViewEngine classes. I didn't get far down this path before wondering if I was headed to a very bad place.</li>
<li>Custom UserControls that can mimic the functionality needed.</li>
</ul>
<p>Opinions? Other options? Is my own ViewEngine my best option? My own ViewPage? Or are UserControl objects going to be adequate (please say no)?</p>
http://stackoverflow.com/questions/1594970/how-do-you-save-a-linq-object-if-you-dont-have-its-data-context/1629831#1629831-1Answer by Jacob Proffitt for How do you save a Linq object if you don't have its data context?Jacob Proffitt2009-10-27T10:15:41Z2009-10-27T10:15:41Z<p>When you retrieve the data in the first place, turn off object tracking on the context that does the retrieval. This will prevent the object state from being tracked on the original context. Then, when it's time to save the values, attach to the new context, refresh to set the original values on the object from the database, and then submit changes. The following worked for me when I tested it.</p>
<pre><code>MyClass obj = null;
using (DataContext context = new DataContext())
{
context.ObjectTrackingEnabled = false;
obj = (from p in context.MyClasses
where p.ID == someId
select p).FirstOrDefault();
}
obj.Name += "test";
using (DataContext context2 = new ())
{
context2.MyClasses.Attach(obj);
context2.Refresh(System.Data.Linq.RefreshMode.KeepCurrentValues, obj);
context2.SubmitChanges();
}
</code></pre>
http://stackoverflow.com/questions/1601875/the-specified-domain-either-does-not-exist-or-could-not-be-contacted/1602394#16023941Answer by Jacob Proffitt for "The specified domain either does not exist or could not be contacted"Jacob Proffitt2009-10-21T17:42:11Z2009-10-21T17:42:11Z<p>I've found it much easier to use the System.DirectoryServices.AccountManagement namespace for this kind of thing, in your case the UserPrincipal class is your friend.</p>
<pre><code>Private Function GetEmail() As String
Dim pc As PrincipalContext = new PrincipalContext(ContextType.Domain)
Dim wi As WindowsIdentity = HttpContext.Current.User.Identity
Dim up As UserPrincipal = UserPrincipal.FindByIdentity(pc, wi.Name)
Return up.EmailAddress
End Function
</code></pre>
http://stackoverflow.com/questions/1602036/how-to-list-all-computers-and-the-last-time-they-were-logged-onto-in-ad/1602282#16022821Answer by Jacob Proffitt for How to list all computers and the last time they were logged onto in AD?Jacob Proffitt2009-10-21T17:22:45Z2009-10-21T17:22:45Z<p>It'd be easier to use the ComputerPrincipal class and a PrincipalSearcher from System.DirectoryServices.AccountManagement.</p>
<pre><code>PrincipalContext pc = new PrincipalContext(ContextType.Domain, domainName);
PrincipalSearcher ps = new PrincipalSearcher(new ComputerPrincipal(pc));
PrincipalSearchResult<Principal> psr = ps.FindAll();
foreach (ComputerPrincipal cp in psr)
{
DataRow dr = results.NewRow();
dr["name"] = cp.Name;
dr["lastLogonTimestamp"] = cp.LastLogon;
results.Rows.Add(dr);
}
</code></pre>
http://stackoverflow.com/questions/1575402/linq-grouping-by-custom-class/1575582#15755821Answer by Jacob Proffitt for linq grouping by custom classJacob Proffitt2009-10-15T22:57:42Z2009-10-15T22:57:42Z<p>This is cribbed from the help files and something I haven't implemented, but should work. The problem is that you need a single class for it to compare and it uses both ToString and GetHashCode in the comparison (which is why your dictionary idea didn't work, it isn't comparing the elements of the dictionary, it's comparing the ToString and GetHashCode of it). Have GetKey return the following class and populate the keyBag of the class with your Dictionary from above:</p>
<pre><code>class PortableKey
{
public Dictionary<string, object> keyBag { get; set; }
public PortableKey(Dictionary<string, object> Keys)
{
this.keyBag = Keys;
}
public override bool Equals(object obj)
{
PortableKey other = (PortableKey)obj;
foreach (KeyValuePair<string, object> key in keyBag)
{
if (other.keyBag[key.Key] != key.Value) return false;
}
return true;
}
public override int GetHashCode()
{
// hashCodes is an array of integers represented as strings. { "1", "4", etc. }
string[] hashCodes = keyBag.Select(k => k.Value.GetHashCode().ToString()).ToArray();
// hash is the Hash Codes all joined in a single string. "1,4,etc."
string hash = string.Join(",", hashCodes);
// returns a single hash code for the combined hash.
// Note, this is not guaranteed unique, nor is it intended to be so.
return hash.GetHashCode();
}
public override string ToString()
{
string[] values = keyBag.Select(k => k.Value.ToString()).ToArray();
return string.Join(",", values);
}
}
</code></pre>
http://stackoverflow.com/questions/1546736/a-cumbersome-linq-query/1546887#15468871Answer by Jacob Proffitt for A cumbersome linq queryJacob Proffitt2009-10-10T02:45:52Z2009-10-10T02:45:52Z<p>Ugh. Looks like you'll need a sub-select.</p>
<pre><code>var ids = from task in context.TaskAndAccounts
where task.AccountId == accountId ||
(from grp in context.AccountsInGroups
where grp.AccountId == accountId
select grp.GroupId).Contains(task.GroupId)
select task;
</code></pre>
http://stackoverflow.com/questions/1528086/linq-sorting-special-characters-first/1528372#15283724Answer by Jacob Proffitt for LINQ sorting special characters first?Jacob Proffitt2009-10-06T22:09:52Z2009-10-06T22:09:52Z<p>One of the less-well-known features of .Net 3.5 is that you can substitue a lambda for an IComparer. This is handy for cases like this where you want a one-off sort. If this <strong>isn't</strong> a one-off, you're probably better off with a custom IComparer class. Here's how you'd do this brute force style:</p>
<pre><code>List<string> list = new List<string>();
list.Sort((x, y) =>
{
if(Char.IsLetterOrDigit(x[0])){
if(!Char.IsLetterOrDigit(y[0])){
// x is a letter/digit and y is not, override regular CompareTo
return -1;
}
}
else if (Char.IsLetterOrDigit(y[0]))
{
// y is a letter/digit and x is not, override regular CompareTo
return 1;
}
return x.CompareTo(y);
});
</code></pre>
http://stackoverflow.com/questions/1527148/nested-linq-to-created-multiple-class-objects/1527571#15275711Answer by Jacob Proffitt for Nested Linq to created multiple class objectsJacob Proffitt2009-10-06T19:25:57Z2009-10-06T19:25:57Z<p>It might help if you isolate your logic a bit more. Best bet, IMO, would be to add a constructor to both MenuItem and SubMenuItem that accepts an XElement.</p>
<pre><code>public class MenuItem
{
public MenuItem() { }
public MenuItem(XElement xmlDoc)
{
this.id = xmlDoc.Element("Id").Value;
this.url = xmlDoc.Element("Url").Value;
// etc.
subMenuItems = (from subMenuItem in xmlDoc.Descendants("SubItem")
select new SubMenuItem(subMenuItem)).ToList();
// etc.
}
public class SubMenuItem
{
public SubMenuItem() { }
public SubMenuItem(XElement xmlDoc)
{
this.id = xmlDoc.Element("Id").Value;
// etc.
}
// etc.
}
</code></pre>
<p>That'd clear up your initial select to be:</p>
<pre><code>MenuItems = (from menuItem in xmlDoc.Descendants("Item")
select new MenuItem(menuItem)).ToList();
</code></pre>
http://stackoverflow.com/questions/1501188/how-do-i-group-by-events-by-year-using-a-single-linq-query/1501227#15012274Answer by Jacob Proffitt for How do I group by Events by year using a single LINQ query?Jacob Proffitt2009-09-30T23:39:24Z2009-09-30T23:39:24Z<p>You're really looking for an ordered group.</p>
<pre><code>var yearsList = from e in Events
group e by e.EventDate.Year into g
orderby g.Key
select g;
foreach(var yearGroup in yearsList)
{
int year = yearGroup.Key;
foreach(Event e in yearGroup)
{
// do something with the events
}
}
</code></pre>
http://stackoverflow.com/questions/1434980/linq-to-sql-complex-query-problem/1435578#14355781Answer by Jacob Proffitt for LINQ to SQL complex query problemJacob Proffitt2009-09-16T21:28:13Z2009-09-17T22:16:53Z<p>Based on the comment, I've an alternative suggestion. Since your error is coming from SQL, and you aren't using the new column as a filter, you can move your calculation to the client. For this to work, you'll need to pull all the relevant records (using DataLoadOptions.LoadWith<> on your context).</p>
<p>To further your desire for use with binding to a DataGrid, it'd probably be easiest to bury the complexity in a property of Principal.</p>
<pre><code>partial class Principal
{
public decimal Capacity
{
get
{
return this.Scale == 0 ? 0 : this.Visits.Select(v =>
(v.Frequency.Value == 1 ? 1 : v.Frequency.Value * 1.8) / this.Scale).Sum();
}
}
}
</code></pre>
<p>Then your retrieval gets <strong>really</strong> simple:</p>
<pre><code>using (ShopManagerDataContext context = new ShopManagerDataContext())
{
DataLoadOptions options = new DataLoadOptions();
options.LoadWith<Principal>(p => p.Visits);
options.LoadWith<Visit>(v => v.Frequency);
context.LoadOptions = options;
return (from p in context.Principals
select p).ToList();
}
</code></pre>
http://stackoverflow.com/questions/1435517/linq-to-sql-multi-table-join-return-type-not-generated-by-dbml/1436099#14360990Answer by Jacob Proffitt for Linq to SQL: Multi-table join return type not generated by dbmlJacob Proffitt2009-09-17T00:00:34Z2009-09-17T00:00:34Z<p>Sounds to me like what you are looking for is DataLoadOptions.LoadWith<>. That way you return your Question object and the related objects are populated at the same time through the defined associations. Something like this:</p>
<pre><code>public IQueryable<Consumer_Question> GetQuestions(int subCategoryId)
{
//create DataContext
using (MototoolsDataContext mototoolsDataContext = new MototoolsDataContext())
{
mototoolsDataContext.Log = Console.Out;
DataLoadOptions options = new DataLoadOptions();
options.LoadWith<Consumer_Questions>(q => q.Consumer_TagQuestions);
options.LoadWith<Consumer_TagQuestions>(tag => tag.Consumer_SubCategoriesTags);
mototoolsDataContext.LoadOptions = options;
var questions = (from subCatTag in mototoolsDataContext.Consumer_SubCategoriesTags
join tagQuestion in mototoolsDataContext.Consumer_TagQuestions on subCatTag.TagID equals tagQuestion.TagID
join question in mototoolsDataContext.Consumer_Questions on tagQuestion.QuestionsID equals question.ID
where subCatTag.SubCategoriesID == subCategoryId
orderby subCatTag.ID descending
select question);
//select new { question, tagQuestion });
return questions;
}
}
</code></pre>
http://stackoverflow.com/questions/1422932/display-excel-2007-document-in-browser-using-com/1423348#14233480Answer by Jacob Proffitt for Display Excel 2007 Document in Browser using COMJacob Proffitt2009-09-14T19:09:22Z2009-09-14T19:09:22Z<p>This sounds like a use case that <a href="http://workspace.officelive.com" rel="nofollow">Office Live Workspace</a> was created for. It's free, it's collaborative, and it allows you to determine sharing permissions.</p>
http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/11317#113175Answer by Jacob Proffitt for What good technology podcasts are out there?Jacob Proffitt2008-08-14T16:43:53Z2009-09-14T09:21:53Z<p>Besides Stack Overflow of course, here are mine.</p>
<ul>
<li>Many have already mentioned <a href="http://www.hanselminutes.com/hanselminutes%5Fmp3Direct.xml" rel="nofollow">Hanselminutes</a>.</li>
<li>Some have already mentioned <a href="http://feeds.feedburner.com/netRocksFullMp3Downloads" rel="nofollow">.NET Rocks!</a> </li>
<li>Not quite as many have mentioned <a href="http://feeds.feedburner.com/RunasRadio" rel="nofollow">RunAs Radio</a>.</li>
</ul>
<p>I can't believe the size of some of these lists. With podcasts, I like to keep the list short and the quality high. As such, I tend to skip the aggregates like ITConversations et. al.</p>
http://stackoverflow.com/questions/1402529/is-it-feasible-to-point-many-domains-subdomains-to-the-same-web-site-with-the-pur/1402677#14026771Answer by Jacob Proffitt for Is it feasible to point many domains/subdomains to the same web site with the purpose or running multiple sites off one code base?Jacob Proffitt2009-09-09T23:31:20Z2009-09-09T23:31:20Z<p>The gotcha to look out for is if your application is both a) storing data in memory and b) using the same application space. So if, for example, you want to dish up two different blogs and you want the data to be resident in memory (if, say, your back-end store was XML and you didn't want to parse XML with every request) then you'll have to make sure that Asp.Net sees each call as a separate application (which can both point to the same file-system folder and thus uses the same files).</p>
<p>I ran into this exact situation when coding a <a href="http://blogenginesqlserver.codeplex.com/" rel="nofollow">multi-blog data provider for BlogEngine.Net</a>. It uses a single code base to serve up different blogs based on the requested URL. However, since BlogEngine.Net carries its data in memory, the data provider won't work unless IIS is configured so that each blog is its own application.</p>
http://stackoverflow.com/questions/1370445/conditional-assignments-in-linq-to-sql-methods/1370469#13704692Answer by Jacob Proffitt for conditional assignments in Linq to SQL methodsJacob Proffitt2009-09-02T22:25:46Z2009-09-02T22:25:46Z<p>It's probably better to make a second pass so you can keep your query clean and side-effect-free.</p>
<pre><code>int x = 100;
List<Result> results = (from r in Results
where r.id == id
select r).ToList();
results.ForEach(r => r.result = r.value == x ? "Found" : "Not Found");
</code></pre>
http://stackoverflow.com/questions/1369944/displaying-hierarchical-data-from-database-in-unordered-list-via-repeater-control/1370216#13702160Answer by Jacob Proffitt for Displaying hierarchical data from database in unordered list via Repeater controlJacob Proffitt2009-09-02T21:25:19Z2009-09-02T21:25:19Z<p>You're not going to be able to do this with a standard repeater. You could nest repeaters, but that'd take some programatic tweaking to build your hierarchy. An alternative would be to use the TreeView control. If you don't like the built-in TreeView and you want cleaner markup, Asp.Net MVC sounds like it'd be a better fit. If you want a more middle-ground solution, Asp.Net's <a href="http://www.asp.net/cssadapters/" rel="nofollow">CSS Friendly Control Adapters</a> may work for better you.</p>
http://stackoverflow.com/questions/1308811/how-can-i-automatically-set-a-dateupdated-column-using-the-entity-framework/1309117#13091170Answer by Jacob Proffitt for How can I automatically set a DateUpdated column using the Entity Framework?Jacob Proffitt2009-08-20T22:09:57Z2009-08-20T22:09:57Z<p>Personally, I'd go with creating a custom object for my tables to inherit from. You can set the Base Type for your tables to this object and then play with it from there. This allows you to override OnPropertyChanged so that it will execute whenever any property is changed on the table. This is particularly useful if you can count on the convention that the field you're interested in is named "DateUpdated". It'd take some minor reflection magic, but not really much.</p>
<pre><code>using System.Reflection;
public class TableBase : System.Data.Objects.DataClasses.EntityObject
{
protected override void OnPropertyChanged(string property)
{
base.OnPropertyChanged(property);
if (property != "DateUpdated")
{
PropertyInfo prop = this.GetType().GetProperty("DateUpdated");
if (prop != null && prop.PropertyType.IsAssignableFrom(typeof(DateTime)))
{
prop.SetValue(this, DateTime.Now, null);
}
}
}
}
</code></pre>
<p>Set the Base Type of your tables to TableBase and if they have a property of "DateUpdated" that property will become Datetime.Now as soon as any property is changed.</p>
http://stackoverflow.com/questions/1296743/how-do-i-load-a-word-docx-into-a-useful-xml-document-in-an-asp-net-app/1297358#12973582Answer by Jacob Proffitt for How do I load a Word docx into a useful xml document in an ASP.NET app?Jacob Proffitt2009-08-19T01:04:44Z2009-08-19T01:04:44Z<p>I highly recommend looking into the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c6e744e5-36e9-45f5-8d8c-331df206e0d0&DisplayLang=en" rel="nofollow">Open XML SDK 2.0</a>. It's a CTP, but I've found it extremely useful in manipulating xmlx files without having to deal with COM at all. The documentation is a bit sketchy, but the key thing to look for is the DocumentFormat.OpenXml.Packaging.WordprocessingDocument class. You can pick apart the .docx document if you rename the extension to .zip and dig into the XML files there. From doing that, it looks like a Table of Contents is contained in a "Structured Document" tag and that things like the headings are in a hyperlink from there. Putzing around with it a bit, I found that something like this should work (or at least give you a starting point).</p>
<pre><code>WordprocessingDocument wordDoc = WordprocessingDocument.Open(Filename, false);
SdtBlock contents = wordDoc.MainDocumentPart.Document.Descendants<SdtBlock>().First();
List<string> contentList = new List<string>();
foreach (Hyperlink section in contents.Descendants<Hyperlink>())
{
contentList.Add(section.Descendants<Text>().First().Text);
}
</code></pre>
http://stackoverflow.com/questions/1268866/how-to-update-with-linq-to-sql/1269240#12692402Answer by Jacob Proffitt for How to update with Linq-To-SQL?Jacob Proffitt2009-08-12T23:16:57Z2009-08-12T23:16:57Z<p>Yes, there is a simpler way. Much simpler. If you attach your entities to the context and then Refresh (with KeepCurrentValues selected), Linq to SQL will get those entities from the server, compare them, and mark updated those that are different. Your code would look something like this.</p>
<pre><code>public static void Update(IEnumerable<Sample> samples
, DataClassesDataContext db)
{
db.Samples.AttachAll(samples);
db.Refresh(RefreshMode.KeepCurrentValues, samples)
db.SubmitChanges();
}
</code></pre>
<p>In this case, Linq to SQL is using the keys to match and update records so as long as your keys are in synch, you're fine.</p>
http://stackoverflow.com/questions/1257107/entity-framework-to-multiple-databases-same-schema-at-runtime/1257432#12574321Answer by Jacob Proffitt for Entity Framework to multiple databases (same schema) at runtime?Jacob Proffitt2009-08-10T21:53:01Z2009-08-10T21:53:01Z<p>If you work through an EntityConnection in the constructor of your entities object, you can change the database pretty easily.</p>
<pre><code>EntityConnection con = new EntityConnection(connString);
con.ChangeDatabase(dbName);
using (Entities context = new Entities(con))
{
// Some code here
}
</code></pre>
http://stackoverflow.com/questions/1247532/what-is-the-most-elegant-way-to-implement-a-business-rule-relating-to-a-child-col/1247672#12476720Answer by Jacob Proffitt for What is the most elegant way to implement a business rule relating to a child collection in LINQ?Jacob Proffitt2009-08-08T01:15:47Z2009-08-08T01:15:47Z<p>This question has too many dependencies to answer well—the biggest of which is where you plan on enforcing business rules overall. In order of preference, you have to ask: Do you have a business rule layer? If not, do you have an independent data access layer? If not, are you using a data provider model? If not, then you're looking at enforcing this kind of thing (or handling the SqlException) wherever you're handling the configuration UI.</p>
<p>For something like a wiki, you probably don't need a hugely complex business rule engine simply because your problem domain is pretty well constrained already. Also, this sounds like the kind of rule that pretty much never changes so isolating it in a formal rules layer is a bit of overkill. As such, you're probably best off putting this kind of constraint in the data layer or data provider.</p>
<p>If you're using Linq to Sql, for example, you could mirror what you've done in SQL Server by making the OwnerId property in your model be a non-nullable property tied by a relationship to the WikiUser table. That'd enforce that the OwnerId property is populated (because it is non-nullable) and give you the unique constraint you are looking for.</p>
http://stackoverflow.com/questions/1242028/linq-date-subtraction-with-matching-issue/1242065#12420651Answer by Jacob Proffitt for Linq | Date | Subtraction with matching issueJacob Proffitt2009-08-06T23:26:20Z2009-08-07T01:51:10Z<p>Have you tried it without the string conversion?</p>
<pre><code>from x in Users
where DateTime.Today.Subtract(x.CreatedDate).Equals(New Timespan(1, 0, 0, 0))
select x;
</code></pre>
<p>EDIT: Using Linq to Sql will throw fits on DateTime functions. Alter your select so you're doing the subtract on DateTime and modify the string so it'll look like what SQL Server is producing. I noticed, for example, that my SQL Server adds a leading space character for dates so yesterday is <code>"Aug__5_2009_12:00AM":</code> (spaces changed to underscore so you can see the difference). Anyway, I got this to work in LINQPad against a local database. It's a bit of a kludge, but seems to work.</p>
<pre><code>from x in Users
where x.CheckDate.ToString() == DateTime.Today.AddDays(-1).ToString("MMM dd yyyy hh:mmtt").Replace(" 0", " ")
select x
</code></pre>
http://stackoverflow.com/questions/1241405/how-to-group-more-than-one-table-by-in-linq/1241662#12416620Answer by Jacob Proffitt for How to Group more than one table By in LINQJacob Proffitt2009-08-06T21:39:47Z2009-08-06T21:39:47Z<p>Ben's answer is a bit over-complicated, IMO. It'd be simpler to reverse the select/join pairing like this:</p>
<pre><code>var query = from o in context.Orders
join c in context.Contacts on o.CustomerId equals c.Id into Customers
group o by o.Id into g
select new {
g.Key,
ContactWhatever = g.Sum(o => o.Customers.Sum(c => c.Whatever)),
OrderWhatever = g.Sum(o => o.Whatever)
};
</code></pre>
http://stackoverflow.com/questions/1235439/trying-to-maintaining-a-dataset-in-winform-app/1236130#12361301Answer by Jacob Proffitt for Trying to maintaining a DataSet in WinForm AppJacob Proffitt2009-08-05T22:38:20Z2009-08-05T22:38:20Z<p>Your problem is likely here:</p>
<pre><code> if (confirmChanges == DialogResult.Yes)
{
_personInfo.AcceptChanges();
ConnectBLL.BLL.Person.Update(_personInfo);
}
</code></pre>
<p>AcceptChanges sets the RowState to Unchanged on all rows that were ready to be updated. Frankly, it'd probably be better to use whatChanged as that'll keep your adapter from having to re-check for changed rows.</p>
<pre><code> if (confirmChanges == DialogResult.Yes)
{
ConnectBLL.BLL.Person.Update(whatChanged);
_personInfo.AcceptChanges();
}
</code></pre>
http://stackoverflow.com/questions/1235937/reporting-tool-or-software-for-printed-forms/1236090#12360900Answer by Jacob Proffitt for Reporting Tool or Software for Printed Forms?Jacob Proffitt2009-08-05T22:26:40Z2009-08-05T22:26:40Z<p>I wouldn't go with a base reporting tool. Government forms are tricky beasts and I'd look for software that'll do it directly. I don't know of anyone producting .Net components that'll do what you need (and a quickie google/bing search didn't produce any), but there are a <strong>lot</strong> of products out there that let you import your data in a format of your choice (generally QuickBooks and CSV) for a perfectly reasonable price (~$40).</p>
<p>That's what we used back in the day (some six or seven years ago) when I needed to do a stack of 1099s on pre-printed forms for a small company every year. There was some fiddling with getting the right data into the CSV, but once we matched up the actual printing was a snap. It's not as automated as you are probably looking for, but the trade-off of having someone follow a simple procedure instead of messing with PCL positioning and formatting was well worth it.</p>
http://stackoverflow.com/questions/1788040/linq-to-populate-activedirectory/1788076#1788076Comment by Jacob Proffitt on Linq to populate ActiveDirectoryJacob Proffitt2009-11-24T07:38:32Z2009-11-24T07:38:32ZI'll second this from Marc--particularly the link to Managing Directory Security Principals in the .NET Framework 3.5. I <i>love</i> the System.DirectoryServices.AccountManagement namespace.http://stackoverflow.com/questions/1786643/using-linq-to-query-subquery-multiple-methods-quartz-net-example-for-groups-job/1787082#1787082Comment by Jacob Proffitt on Using LINQ to query/subquery multiple methods (Quartz.NET example for groups, jobs, and triggers)Jacob Proffitt2009-11-24T00:59:05Z2009-11-24T00:59:05ZNot at all. Tell 'em all to vote for my answer :).http://stackoverflow.com/questions/1761312/active-directory-properties/1761442#1761442Comment by Jacob Proffitt on Active Directory PropertiesJacob Proffitt2009-11-19T07:19:01Z2009-11-19T07:19:01ZYou're right. Just noticed that and was headed to correct when I saw your comment :).http://stackoverflow.com/questions/1747123/linq-to-entities-select-clause-containing-non-ef-method-calls/1747509#1747509Comment by Jacob Proffitt on LINQ-to-Entities select clause containing non-EF method callsJacob Proffitt2009-11-17T18:00:11Z2009-11-17T18:00:11ZRight. LINQ to Entities holds everything as an expression tree that it will eventually use against the database only when it is <i>actually</i> 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.http://stackoverflow.com/questions/1646730/designer-friendly-views-in-asp-net-mvc/1654142#1654142Comment by Jacob Proffitt on Designer-friendly views in Asp.Net MVCJacob Proffitt2009-10-31T21:05:57Z2009-10-31T21:05:57ZNot 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.http://stackoverflow.com/questions/1646730/designer-friendly-views-in-asp-net-mvc/1646736#1646736Comment by Jacob Proffitt on Designer-friendly views in Asp.Net MVCJacob Proffitt2009-10-30T22:28:36Z2009-10-30T22:28:36ZAbsolutely. Html/CSS etc. is what designers <i>do</i>. What I don't want them to have to do is learn code APIs.http://stackoverflow.com/questions/1646730/designer-friendly-views-in-asp-net-mvc/1651613#1651613Comment by Jacob Proffitt on Designer-friendly views in Asp.Net MVCJacob Proffitt2009-10-30T22:25:58Z2009-10-30T22:25:58ZThe 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.http://stackoverflow.com/questions/1646730/designer-friendly-views-in-asp-net-mvc/1646736#1646736Comment by Jacob Proffitt on Designer-friendly views in Asp.Net MVCJacob Proffitt2009-10-29T22:19:57Z2009-10-29T22:19:57ZYou'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...http://stackoverflow.com/questions/1646730/designer-friendly-views-in-asp-net-mvcComment by Jacob Proffitt on Designer-friendly views in Asp.Net MVCJacob Proffitt2009-10-29T22:17:31Z2009-10-29T22:17:31ZI 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.http://stackoverflow.com/questions/1646730/designer-friendly-views-in-asp-net-mvc/1646736#1646736Comment by Jacob Proffitt on Designer-friendly views in Asp.Net MVCJacob Proffitt2009-10-29T22:14:41Z2009-10-29T22:14:41ZI don't want clueless designers. I just don't want to force them to learn developing while they're at it.http://stackoverflow.com/questions/1594970/how-do-you-save-a-linq-object-if-you-dont-have-its-data-context/1629831#1629831Comment by Jacob Proffitt on How do you save a Linq object if you don't have its data context?Jacob Proffitt2009-10-28T01:39:18Z2009-10-28T01:39:18ZDepends. 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.http://stackoverflow.com/questions/1594970/how-do-you-save-a-linq-object-if-you-dont-have-its-data-context/1613204#1613204Comment by Jacob Proffitt on How do you save a Linq object if you don't have its data context?Jacob Proffitt2009-10-28T01:38:28Z2009-10-28T01:38:28ZIt 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.http://stackoverflow.com/questions/1594970/how-do-you-save-a-linq-object-if-you-dont-have-its-data-context/1613204#1613204Comment by Jacob Proffitt on How do you save a Linq object if you don't have its data context?Jacob Proffitt2009-10-27T18:49:30Z2009-10-27T18:49:30ZYou 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?http://stackoverflow.com/questions/1594970/how-do-you-save-a-linq-object-if-you-dont-have-its-data-context/1629831#1629831Comment by Jacob Proffitt on How do you save a Linq object if you don't have its data context?Jacob Proffitt2009-10-27T10:22:08Z2009-10-27T10:22:08ZIn further testing, it still works if I omit the context.ObjectTrackingEnabled = false; on the initial read. The key seems to be attach and refresh.http://stackoverflow.com/questions/1601875/the-specified-domain-either-does-not-exist-or-could-not-be-contacted/1602394#1602394Comment by Jacob Proffitt on "The specified domain either does not exist or could not be contacted"Jacob Proffitt2009-10-22T20:37:23Z2009-10-22T20:37:23ZSure thing. I <i>love</i> that namespace.