User casperOne - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T13:29:44Zhttp://stackoverflow.com/feeds/user/50776http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1581810/what-is-the-c-equivalent-of-iterator-in-java/1581815#15818153Answer by casperOne for what is the c# equivalent of Iterator in JavacasperOne2009-10-17T09:30:36Z2009-10-17T09:30:36Z<p>In .NET in general, you are going to use the <code>IEnumerable<T></code> interface. This will return an <code>IEnumerator<T></code> which you can call the MoveNext method and Current property on to iterate through the sequence.</p>
<p>In C#, the foreach keyword does all of this for you. Examples of how to use foreach can be found here:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ttw7t8t6%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ttw7t8t6(VS.80).aspx</a></p>
http://stackoverflow.com/questions/1580632/where-does-ef-store-the-mapping-view-in-metadataworkspace-entityconnection-or-i0Where does EF store the mapping view, in MetadataWorkspace, EntityConnection or in ObjectContext and is it worth it to pregenerate views?casperOne2009-10-16T21:51:31Z2009-10-17T06:20:51Z
<p>I am currently transitioning an application over from LINQ-to-SQL and I've been running into a problem.</p>
<p>LINQ-to-SQL offered a way to query any Table/Column-attributed type (which was the default mapping model) through <em>any</em> DataContext through the <code>GetTable<T></code> function, which analyzed the type and then created the appropriate SQL. Even though there were strongly typed DataContexts, for the most part, they weren't needed if you were just doing CRUD operations against basic table types.</p>
<p>This was great, because in classes outside of my assembly, I could define a pre-existing query in the form of <code>IQueryable<T1></code> as well as a DataContext, and then allow them to return <code>IQueryable<T2></code>, possibly using their own types which would have representations in the same underlying database that the DataContext was connected to.</p>
<p>Because of this, I could have all of my data objects compiled in one assembly, make the call to the external assembly, let them transform the query, and execute it for the results.</p>
<p>In moving to EF, I've found that is no longer the case. There is something comprable in the <code>CreateQuery<T></code> method on ObjectContext, but that means that the ObjectContext has to have a MetadataWorkspace which is pre-loaded with all of the appropriate mapping files.</p>
<p>That works fine if all the mappings are stored in one assembly. If not, then you have to tell the designer to copy the csdl, msl, and ssdl to an output directory and then load them manually through a combination of calls to RegisterItemCollection and LoadAssembly on the MetadataWorkspace.</p>
<p>Or, you can actually keep the csdl, msl and ssdl files as resources in the various assemblies and simply call the constructor on MetadataWorkspace which will take a number of paths and Assembly types and pass "res://*/" for the path, and multiple assemblies.</p>
<p>Either way is fine for me.</p>
<p>The question that I have is the where the mapping views that are created by EF are stored.</p>
<p>I have read this on MSDN that indicates that you can increase performance by pre-generating the mapping views for entities:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb896240.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb896240.aspx</a></p>
<p>And indeed, it does improve performance.</p>
<p>The question I have is that if I am generating one MetadataWorkspace and then sharing it among EntityConnections (which I then pass to ObjectContexts and perform my work on), is the mapping view stored in the MetadataWorkspace, the EntityConnection, or ObjectContext?</p>
<p>I've set breakpoints in the pre-compiled view code, and it would seem that it is only called once, no matter how many EntityConnections or ObjectContexts I create, as long as I use a shared MetadataWorkspace, which would suggest to me that the view mappings are indeed stored there.</p>
<p>So for a sanity check, is this correct?</p>
<p>Also, as a follow-up, is it worth it? If I am creating a shared MetadataWorkspace and then passing it to all EntityConnections and ObjectContext instances and NOT pre-compiling mapping views, then there is at the least a one-time performance hit that is incurred in generating the mapping view.</p>
<p>The question here is that if I am using the shared MetadataWorkspace, and the mapping view is indeed generated and stored on that level, then does that mean that as long as I use the shared MetadataWorkspace across all EntityConnection/ObjectContext instances, I will incur the map generation cost just once?</p>
<p>If that is the case, then it doesn't make sense (for the purposes of my application, not in general) to pre-generate the views.</p>
<p>That is assuming of course, that it is stored on the MetadataWorkspace level and that even without pregenerated mapping views, the cost is one time for the instance of the MetadataWorkspace.</p>
<p>Can someone validate this or not for me?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1301316/c-equivalent-of-python-slice-operation/1301347#13013477Answer by casperOne for C# equivalent of python slice operationcasperOne2009-08-19T17:11:57Z2009-08-19T19:18:08Z<p>You can easily use LINQ to do this:</p>
<pre><code>// Create the list
int[] my_list = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
IEnumerable<int> new_list =
my_list.Skip(1).Concat(my_list.Take(1));
</code></pre>
<p>You could even add this as an extension method like so:</p>
<pre><code>public static IEnumerable<T> Slice(this IEnumerable<T> e, int count)
{
// Skip the first number of elements, and then take that same number of
// elements from the beginning.
return e.Skip(count).Concat(e.Take(count));
}
</code></pre>
<p>Of course there needs to be some error checking in the above, but that's the general premise.</p>
<p><hr /></p>
<p>Thinking about this more, there are definite improvements that can be made to this algorithm which would improve performance.</p>
<p>You can definitely take advantage if the <code>IEnumerable<T></code> instance implements <code>IList<T></code> or is an array, taking advantage of the fact that it is indexed.</p>
<p>Also, you can cut down on the number of iterations that are required to skip and take would take within the body of the message.</p>
<p>For example, if you have 200 items and you want to slice with a value of 199, then it requires 199 (for the initial skip) + 1 (for the remaining item) + 199 (for the take) iterations in the body of the Slice method. This can be cut down by iterating through the list once, storing the items in a list which is then concatenated to itself (requiring no iteration).</p>
<p>In this case, the trade off here is memory.</p>
<p>To that end, I propose the following for the extension method:</p>
<pre><code>public static IEnumerable<T> Slice(this IEnumerable<T> source, int count)
{
// If the enumeration is null, throw an exception.
if (source == null) throw new ArgumentNullException("source");
// Validate count.
if (count < 0) throw new ArgumentOutOfRangeException("count",
"The count property must be a non-negative number.");
// Short circuit, if the count is 0, just return the enumeration.
if (count == 0) return source;
// Is this an array? If so, then take advantage of the fact it
// is index based.
if (source.GetType().IsArray)
{
// Return the array slice.
return SliceArray((T[]) source, count);
}
// Check to see if it is a list.
if (source is IList<T>)
{
// Return the list slice.
return SliceList ((IList<T>) source);
}
// Slice everything else.
return SliceEverything(source, count);
}
private static IEnumerable<T> SliceArray(T[] arr, int count)
{
// Error checking has been done, but use diagnostics or code
// contract checking here.
Debug.Assert(arr != null);
Debug.Assert(count > 0);
// Return from the count to the end of the array.
for (int index = count; index < arr.Length; index++)
{
// Return the items at the end.
yield return arr[index];
}
// Get the items at the beginning.
for (int index = 0; index < count; index++)
{
// Return the items from the beginning.
yield return arr[index];
}
}
private static IEnumerable<T> SliceList(IList<T> list, int count)
{
// Error checking has been done, but use diagnostics or code
// contract checking here.
Debug.Assert(list != null);
Debug.Assert(count > 0);
// Return from the count to the end of the list.
for (int index = count; index < list.Count; index++)
{
// Return the items at the end.
yield return list[index];
}
// Get the items at the beginning.
for (int index = 0; index < list.Count; index++)
{
// Return the items from the beginning.
yield return list[index];
}
}
// Helps with storing the sliced items.
internal class SliceHelper<T> : IEnumerable<T>
{
// Creates a
internal SliceHelper(IEnumerable<T> source, int count)
{
// Test assertions.
Debug.Assert(source != null);
Debug.Assert(count > 0);
// Set up the backing store for the list of items
// that are skipped.
skippedItems = new List<T>(count);
// Set the count and the source.
this.count = count;
this.source = source;
}
// The source.
IEnumerable<T> source;
// The count of items to slice.
private int count;
// The list of items that were skipped.
private IList<T> skippedItems;
// Expose the accessor for the skipped items.
public IEnumerable<T> SkippedItems { get { return skippedItems; } }
// Needed to implement IEnumerable<T>.
// This is not supported.
System.Collections.IEnumerator
System.Collections.IEnumerable.GetEnumerator()
{
throw new InvalidOperationException(
"This operation is not supported.");
}
// Skips the items, but stores what is skipped in a list
// which has capacity already set.
public IEnumerator<T> GetEnumerator()
{
// The number of skipped items. Set to the count.
int skipped = count;
// Cycle through the items.
foreach (T item in source)
{
// If there are items left, store.
if (skipped > 0)
{
// Store the item.
skippedItems.Add(item);
// Subtract one.
skipped--;
}
else
{
// Yield the item.
yield return item;
}
}
}
}
private static IEnumerable<T> SliceEverything<T>(
this IEnumerable<T> source, int count)
{
// Test assertions.
Debug.Assert(source != null);
Debug.Assert(count > 0);
// Create the helper.
SliceHelper<T> helper = new SliceHelper<T>(
source, count);
// Return the helper concatenated with the skipped
// items.
return helper.Concat(helper.SkippedItems);
}
</code></pre>
http://stackoverflow.com/questions/1301526/how-do-i-allow-my-app-to-have-drag-and-drop-toolboxes-like-visual-studio/1301678#13016781Answer by casperOne for How do I allow my app to have drag and drop toolboxes like Visual Studio?casperOne2009-08-19T18:09:49Z2009-08-19T18:09:49Z<p>Your best bet would be a third-party component to do this. Primarily, you are looking for something that provides docking windows on your form (which would more than likely be provided by a control you place on the form which would take up the entire form).</p>
http://stackoverflow.com/questions/1300832/how-can-i-create-a-form-button-that-will-partially-function-as-web-browsers-page/1300866#13008660Answer by casperOne for How can I create a form button that will partially function as web browser's Page Back?casperOne2009-08-19T15:46:11Z2009-08-19T15:46:11Z<p>There isn't a function that allows you to do this. The problem is that the history exists on the client, not on the server.</p>
<p>If you are only concerned with going ONE page back, then what you can do is when you render the page, take the referrer of the page that is being rendered and then set the event handler for the click of the button (in javascript) to navigate to that page.</p>
<p>You could also pass the value of the history.previous call in javascript back to your server, but the problem is that you have a huge security hole in that anyone can pass any url back.</p>
http://stackoverflow.com/questions/1300245/how-can-i-substitute-a-property-during-serialization-with-datacontractserializer/1300321#13003210Answer by casperOne for How can I substitute a property during serialization with DataContractSerializer?casperOne2009-08-19T14:23:28Z2009-08-19T15:27:42Z<p>You are approaching this the wrong way. You want to have one set of serialization behavior when you send the list to the client, and another set of behavior when you send it back to the server.</p>
<p>You should have explicit code on the client which will call GetChanges and then send that trimmed list back to the server.</p>
<p><hr /></p>
<p>Since you seem to have one root with only a fraction of children changed, and you only want to send back those children that have changed, you will need to create a new type that has a list of the children that you want changed, instead of the whole object graph.</p>
<p>In other words, you need to create a <code>List<T></code> (or some other appropriate container) and serialize THAT back to the server. The thing is, you won't have the fully rehydrated object, only the children that were changed.</p>
<p>If you did need the fully rehydrated object, then you should send back the entire object graph regardless.</p>
http://stackoverflow.com/questions/1300557/windows-form-controls-and-linq-what-should-i-return/1300569#13005693Answer by casperOne for Windows Form Controls and LINQ; What should I return?casperOne2009-08-19T15:08:28Z2009-08-19T15:08:28Z<p>Personally, I prefer Data Transfer Objects, but DataSets work in a pinch.</p>
<p>Basically, the idea is that if you are working with Data Transfer Objects (which have no logic, and represent the model that you are looking to work with on the client), that is an abstraction that can live on regardless of changes on the front or back end. It's typically a good idea.</p>
<p>DataSets are useful, but their lack of compile-time safety (not in the case of strongly-typed DataSets though) because of numeric/string-based field access can pose a problem.</p>
<p>Typically, there is also a large amount of overhead in serializing DataSets over a wire compared to a Data Transfer Object.</p>
http://stackoverflow.com/questions/1300234/c-multi-language-application-with-community-support/1300258#13002580Answer by casperOne for C# Multi Language Application - with Community Support ?casperOne2009-08-19T14:15:44Z2009-08-19T14:15:44Z<p>Why do they need to have the satellite assemblies? Why not give them the Resource files and then you would integrate them back into your build?</p>
http://stackoverflow.com/questions/1300199/c-anyway-to-detect-if-an-object-is-locked/1300222#13002225Answer by casperOne for C# Anyway to detect if an object is locked. casperOne2009-08-19T14:10:45Z2009-08-19T14:10:45Z<p>You can always call the static TryEnter class on the Monitor class using a value of 0 for the value to wait. If it is locked, then the call will return false.</p>
<p>However, the problem here is that you need to make sure that the list that you are trying to synchronize access to is being locked on itself in order to synchronize access.</p>
<p>It's generally bad practice to use the object that access is being synchronized as the object to lock on (exposing too much of the internal details of an object).</p>
<p>Remember, the lock could be on anything else, so just calling this on that list is pointless unless you are sure that list is what is being locked on.</p>
http://stackoverflow.com/questions/1240106/datatable-column-with-custom-data-type/1300214#13002140Answer by casperOne for DataTable Column with Custom Data TypecasperOne2009-08-19T14:09:59Z2009-08-19T14:09:59Z<p>From the documentation for the DataType property on the DataColumn class:</p>
<blockquote>
<p>The DataType property supports the
following base .NET Framework data
types: </p>
<ul>
<li>Boolean </li>
<li>Byte</li>
<li>Char</li>
<li>DateTime</li>
<li>Decimal</li>
<li>Double</li>
<li>Int16</li>
<li>Int32</li>
<li>Int64</li>
<li>SByte</li>
<li>Single String</li>
<li>TimeSpan</li>
<li>UInt16</li>
<li>UInt32</li>
<li>UInt64</li>
</ul>
<p>as well as the following array type:</p>
<ul>
<li>Byte[]</li>
</ul>
</blockquote>
<p>You can't put your own type in a column in the DataTable.</p>
http://stackoverflow.com/questions/1225443/windows-form-components-access/1225470#12254702Answer by casperOne for Windows Form Components AccesscasperOne2009-08-04T02:19:59Z2009-08-04T02:19:59Z<p>You should be passing a strongly typed form or interface implementation which either exposes the controls directly (not the preferred choice) or abstracts the operations on the view into methods/properties which can be called from the controller (the preferred choice).</p>
http://stackoverflow.com/questions/1225371/reverse-sort-a-bindinglistt/1225460#12254600Answer by casperOne for Reverse sort a BindingList<T>casperOne2009-08-04T02:15:53Z2009-08-04T02:15:53Z<p>Why not call the ApplySort method on the IBindingList interface implementation on the <code>BindingList<T></code>? You can just pass the value of ListSortDirection.Descending for the second parameter and the DataGrid should display the items in reverse order.</p>
http://stackoverflow.com/questions/1127385/xelement-and-listg/1127395#11273952Answer by casperOne for XElement and List<g>casperOne2009-07-14T19:12:08Z2009-07-14T19:12:08Z<p>You need to pass the <code>IEnumerable<XElement></code> query as the second parameter, not the "Author" string, like so:</p>
<pre><code>// Note the new way to initialize collections in C# 3.0.
List<Author> authors = new List<Author> ()
{
new Author { FirstName = "Steven", LastName = "King" }),
new Author { FirstName = "Homer", LastName = "" })
};
// The XML
XElement xml = new XElement("Authors",
from na in this.Authors
select new XElement("Author",
new XElement("First", na.FirstName),
new XElement("Last", na.LastName)));
</code></pre>
<p>That will give you the result you need.</p>
http://stackoverflow.com/questions/1122162/wcf-service-access-address-aliased/1122178#11221780Answer by casperOne for WCF - service access address aliasedcasperOne2009-07-13T21:27:32Z2009-07-13T21:27:32Z<p>When you make the reference, it should create entries in your .config file which indicate the remote endpoint. All you have to do is change the remote endpoint to point to the other server and it should work.</p>
http://stackoverflow.com/questions/1122084/how-to-make-a-c-grep-more-functional-using-linq/1122102#11221021Answer by casperOne for How to make a C# 'grep' more Functional using LINQ?casperOne2009-07-13T21:14:17Z2009-07-13T21:14:17Z<p>I would use the FindFile (FindFirstFileEx, FindNextFile, etc, etc) API calls to look in the file for the term that you are searching on. It will probably do it faster than you reading line-by-line.</p>
<p>However, if that won't work for you, you should consider creating an <code>IEnumerable<String></code> implementation which will read the lines from the file and yield them as they are read (instead of reading them all into an array). Then, you can query on each string, and only get the next one if it is needed.</p>
<p>This should save you a lot of time.</p>
<p>Note that in .NET 4.0, a lot of the IO apis that return lines from files (or search files) will return IEnumerable implementations which do exactly what is mentioned above, in that it will search directories/files and yield them when appropriate instead of front-loading all the results.</p>
http://stackoverflow.com/questions/1122024/net-c-datatables-and-datasets-how-to-relate-tables/1122033#11220333Answer by casperOne for .Net C# DataTables and DataSets, How to relate tablescasperOne2009-07-13T21:00:23Z2009-07-13T21:00:23Z<p>Look at the DataRelation class. It is what is used in a DataSet to relate two DataTables together.</p>
http://stackoverflow.com/questions/1121973/getting-icons-out-of-dll/1122008#11220082Answer by casperOne for Getting icons out of DLLcasperOne2009-07-13T20:56:11Z2009-07-13T20:56:11Z<p>With an EXE, you should call the SHGetFileInfo API function and indicate that you want the icon. This function will check all the different ways that an icon can be provided (in the file, through shell extensions, etc, etc).</p>
<p>For what you are getting from the third party library, you can call the ExtractIconEx API function passing the name of the file (the first part) and the index (the second part).</p>
http://stackoverflow.com/questions/1121938/how-do-i-convert-ienumerable-to-a-custom-type-in-c/1121982#11219821Answer by casperOne for How do I convert IEnumerable to a custom type in C#?casperOne2009-07-13T20:52:27Z2009-07-13T20:52:27Z<p>No there isn't. When you use the query operators, it doesn't use instances of the original collection to generate the enumeration. Rather, it uses private implementations (possibly anonymous, possibly not) to provide this functionality.</p>
<p>If you want it in your original collection, you should have a constructor on the type which takes an <code>IEnumerable<T></code> (or whatever your collection stores, if it is specific) and then pass the query to the constructor.</p>
<p>You can then use this to create an extension method for <code>IEnumerable<T></code> called <code>To<YourCollectionType></code> which would take the <code>IEnumerable<T></code> and then pass it to the constructor of your type and return that.</p>
http://stackoverflow.com/questions/1121834/finding-out-if-a-type-implements-a-generic-interface/1121907#11219073Answer by casperOne for Finding out if a type implements a generic interfacecasperOne2009-07-13T20:40:48Z2009-07-13T20:40:48Z<p>Using reflection (and some LINQ) you can easily do this:</p>
<pre><code>public static IEnumerable<Type> GetIListTypeParameters(Type type)
{
// Query.
return
from interfaceType in type.GetInterfaces()
where interfaceType.IsGenericType
let baseInterface = interfaceType.GetGenericTypeDefinition()
where baseInterface == typeof(IList<>)
select interfaceType.GetGenericArguments().First();
}
</code></pre>
<p>First, you are getting the interfaces on the type and filtering out only for those that are a generic type.</p>
<p>Then, you get the generic type definition for those interface types, and see if it is the same as <code>IList<></code>.</p>
<p>From there, it's a simple matter of getting the generic arguments for the original interface.</p>
<p>Remember, a type can have multiple <code>IList<T></code> implementations, which is why the <code>IEnumerable<Type></code> is returned.</p>
http://stackoverflow.com/questions/1120689/how-can-i-insert-binary-file-data-into-a-binary-sql-field-using-a-simple-insert-s/1120749#11207492Answer by casperOne for How can I insert binary file data into a binary SQL field using a simple insert statement?casperOne2009-07-13T16:58:15Z2009-07-13T17:27:46Z<p>If you mean using a literal, you simply have to create a binary string:</p>
<pre><code>insert into Files (FileId, FileData) values (1, '0x010203040506')
</code></pre>
<p>And you will have a record with a six byte value for the FileData field.</p>
<p><hr /></p>
<p>You indicate in the comments that you want to just specify the file name, which you can't do with MSSQL 2000 (or any other version that I am aware of).</p>
<p>You would need a CLR stored procedure to do this in MSSQL 2005/2008 or an extended stored procedure (but I'd avoid that at all costs unless you have to) which takes the filename and then inserts the data (or returns the byte string, but that can possibly be quite long).</p>
<p><hr /></p>
<p>In regards to the question of only being able to get data from a SP/query, I would say the answer is yes, because if you give SQL Server the ability to read files from the file system, what do you do when you aren't connected through Windows Authentication, what user is used to determine the rights? If you are running the service as an admin (God forbid) then you can have an elevation of rights which shouldn't be allowed.</p>
http://stackoverflow.com/questions/1120751/is-the-bulk-insert-command-asynchronous-when-issues-from-net/1120791#11207911Answer by casperOne for Is the BULK INSERT command asynchronous when issues from .Net?casperOne2009-07-13T17:04:59Z2009-07-13T17:04:59Z<p>I would guess no, given that the BULK INSERT command is like any other, the call to Execute will block until the server says it is done.</p>
<p>AFAIK, there is no command that is asynchronous in SQL Server. Unless you use one of the async methods on the SqlCommand, I can't see how the BULK INSERT would be run async.</p>
<p>I would also assume that when the command returns, that any locks that SQL Server had on the file have been released.</p>
<p>It doesn't make any sense otherwise, why would it hold the locks, or not be async, for that matter?</p>
http://stackoverflow.com/questions/1120008/winforms-databinding-object-containing-a-listt/1120243#11202433Answer by casperOne for Winforms Databinding object containing a List<T>casperOne2009-07-13T15:40:25Z2009-07-13T15:59:57Z<p>The <code>calcAges</code> method and the <code>TotalAge</code> property look very suspicious.</p>
<p>First, <code>TotalAge</code> should be read-only. If you allow it to be public and writable, what is the logic for changing the components that make up the age?</p>
<p>Second, every time you get the value, you are firing the <code>PropertyChanged</code> event, which is not good.</p>
<p>Your <code>Roster</code> class should look like this:</p>
<pre><code>public class Roster : INotifyPropertyChanged {
public Roster ()
{
// Set the binding list, this triggers the appropriate
// event binding which would be gotten if the BindingList
// was set on assignment.
People = new BindingList<Person>();
}
// The list of people.
BindingList<Person> people = null;
public BindingList<Person> People
{
get
{
return people;
}
set
{
// If there is a list, then remove the delegate.
if (people != null)
{
// Remove the delegate.
people.ListChanged -= OnListChanged;
}
/* Perform error check here */
people = value;
// Bind to the ListChangedEvent.
// Use lambda syntax if LINQ is available.
people.ListChanged += OnListChanged;
// Technically, the People property changed, so that
// property changed event should be fired.
NotifyPropertyChanged("People");
// Calculate the total age now, since the
// whole list was reassigned.
CalculateTotalAge();
}
}
private void OnListChanged(object sender, ListChangedEventArgs e)
{
// Just calculate the total age.
CalculateTotalAge();
}
private void CalculateTotalAge()
{
// Store the old total age.
int oldTotalAge = totalage;
// If you can use LINQ, change this to:
// totalage = people.Sum(p => p.Age);
// Set the total age to 0.
totalage = 0;
// Sum.
foreach (Person p in People) {
totalage += p.Age;
}
// If the total age has changed, then fire the event.
if (totalage != oldTotalAge)
{
// Fire the property notify changed event.
NotifyPropertyChanged("TotalAge");
}
}
private int totalage = 0;
public int TotalAge
{
get
{
return totalage;
}
}
public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChanged ( String info ) {
if ( PropertyChanged != null ) {
PropertyChanged(this, new PropertyChangedEventArgs(info));
}
}
}
</code></pre>
<p>Now, when the properties in the list items are changed, the parent object will fire the property changed event, and anything bound to it should change as well.</p>
http://stackoverflow.com/questions/1120133/find-the-tables-has-binary-data/1120274#11202741Answer by casperOne for find the tables has binary datacasperOne2009-07-13T15:45:22Z2009-07-13T15:54:13Z<p>For MySql you want the INFORMATION_SCHEMA COLUMNS table:</p>
<p><a href="http://dev.mysql.com/doc/refman/5.1/en/columns-table.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.1/en/columns-table.html</a></p>
<p>If you need to find all of the tables which have binary columns, then you can create a query joining with the INFORMATION_SCHEMA TABLES table:</p>
<p><a href="http://dev.mysql.com/doc/refman/5.1/en/tables-table.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.1/en/tables-table.html</a></p>
http://stackoverflow.com/questions/1110737/can-i-create-a-web-service-that-has-properties/1110757#11107573Answer by casperOne for Can I Create a Web Service that has Properties?casperOne2009-07-10T17:05:57Z2009-07-10T17:05:57Z<p>Your design is flawed. Web services are not meant to have properties. They should only expose methods, the reason being that the HTTP protocol is stateless (and web services assume this too), so exposing a property doesn't make sense unless you want it to apply to all callers of the instance (and still, even in that situation, it doesn't make sense to expose it).</p>
<p>Rather, what you want to do is have the DoMyThing method take the instance of ServiceData (if required) and operate on that, returning the appropriate result set.</p>
<p>If you really have a need to expose properties of the service, you would have a GetProperties method (or something like that) which takes no parameters and returns the appropriate data structure with the service information.</p>
http://stackoverflow.com/questions/1110724/determine-final-destination-of-a-shortened-url/1110744#11107445Answer by casperOne for Determine Final Destination of a Shortened URLcasperOne2009-07-10T17:02:49Z2009-07-10T17:02:49Z<p>You should issue a HEAD request to the url using a HttpWebRequest instance. In the returned HttpWebResponse, check the ResponseUri.</p>
<p>Just make sure the AllowAutoRedirect is set to true on the HttpWebRequest instance (it is true by default).</p>
http://stackoverflow.com/questions/1110643/can-i-depend-on-order-of-output-when-using-rownumber/1110730#11107302Answer by casperOne for Can I depend on order of output when using row_number() casperOne2009-07-10T16:59:31Z2009-07-10T16:59:31Z<p>Im struggling to find the relevance here; if you want explicit ordering the recommended way would be to use an ORDER BY clause in the query.</p>
<p>I would <em>never</em> rely on the default ordering of a table when producing a query that I relied on the order of the results. Any modern RDBMS is going to be able to optimize an order by based on indexes and the like, so it's not something that has to be worried about.</p>
<p>In regards to row_number, while it is a side effect that if no ORDER BY clause exists, the output is ordered by the ROW_NUMBER value, you <strong>cannot</strong> depend on this behavior, as it is not guaranteed.</p>
<p>Again, the <em>only</em> way to guarantee order of the output is with an ORDER BY clause.</p>
http://stackoverflow.com/questions/1110505/how-to-direct-to-a-member-page-from-a-non-member-page-when-a-user-logs-in/1110533#11105331Answer by casperOne for How to direct to a member page from a non-member page when a user logs in?casperOne2009-07-10T16:19:23Z2009-07-10T16:30:57Z<p>When using Forms Authentication for an ASP.NET application, it will automatically redirect you to the page you were viewing before you logged in. This is why you are redirected back to the NonMember.aspx page.</p>
<p>It would be better if you had just one member page, and perform a check in the page to see if the user is authenticated, if so, display the member content, otherwise, display the non-member content.</p>
<p>Then, when the user logs in and is redirected back to the page, they will see the member content.</p>
<p><hr /></p>
<p>If you are insistent on keeping the two separate pages, then in your check you simply have to see if the current user is authenticated (through the IsAuthenticated property on the User that is exposed through the page) and then redirect to your members page. If you are on the NonMember page, you don't need to check to see what the url is (unless this is MVC, which you didn't indicate).</p>
http://stackoverflow.com/questions/1110559/net-c-proper-method-to-use-here-linq/1110589#11105893Answer by casperOne for .NET / C# - Proper Method to Use Here - LINQcasperOne2009-07-10T16:28:14Z2009-07-10T16:28:14Z<p>You <em>could</em> use the static ForEach method:</p>
<pre><code>Array.ForEach(x => fis.Add(new FileInfo(x)));
</code></pre>
<p>However, you can easily replace the entire function with this one line:</p>
<pre><code>IList<FileInfo> fis = Directory.GetFiles(path).
Select(f => new FileInfo(f)).ToList();
</code></pre>
http://stackoverflow.com/questions/1110543/how-to-build-a-category-table/1110569#11105690Answer by casperOne for How to build a category tablecasperOne2009-07-10T16:25:14Z2009-07-10T16:25:14Z<p>I personally don't like the "CAT_ID" "CAT_DESC" nomenclature, I much rather prefer "DESCRIPTION" and "ID".</p>
<p>However, the downside to this is that if you are doing joins on tables which have the same column names, in the projection, you have to rename the columns to indicate which attribute is from which underlying table.</p>
<p>The downside to the "CAT_ID", etc, etc approach is that you can come up with names which don't have a simple singular meaning.</p>
<p>Your usage of the table and the types of queries/joins/projections should help you determine which is best suited for what you are doing.</p>
http://stackoverflow.com/questions/1110499/hosting-a-wcf-service-to-spawn-local-processes-via-remote-command/1110514#11105141Answer by casperOne for Hosting a WCF Service to spawn local processes via remote command.casperOne2009-07-10T16:14:32Z2009-07-10T16:14:32Z<p>You shouldn't have any problems doing this, just make sure that you take the proper steps to authenticate and authorize the service, as you don't want anyone to run any arbitrary process on that machine.</p>
<p>In general, you have a few options in hosting a WCF service. You can host it in any .NET environment, and there is specific support for hosting WCF services in IIS as well.</p>
<p>For a good overview of the hosting options available, see the article on MSDN titled "Hosting and Consuming WCF Services":</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb332338.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb332338.aspx</a></p>
http://stackoverflow.com/questions/1300234/c-multi-language-application-with-community-support/1300258#1300258Comment by casperOne on C# Multi Language Application - with Community Support ?casperOne2009-08-19T17:11:15Z2009-08-19T17:11:15Z@shahjapan: Why not? Resource assemblies simply have to be dropped into the appropriate folder for the application. You only have to add one new assembly for each new language you support.http://stackoverflow.com/questions/1300557/windows-form-controls-and-linq-what-should-i-return/1300569#1300569Comment by casperOne on Windows Form Controls and LINQ; What should I return?casperOne2009-08-19T15:35:32Z2009-08-19T15:35:32Z@Refracted Paladin: Wikipedia has a good entry on Data Transfer Objects here: <a href="http://en.wikipedia.org/wiki/Data_transfer_object" rel="nofollow">en.wikipedia.org/wiki/Data_transfer_object</a> and there is a good article in the August 2009 issue of MSDN title "Pros and Cons of Data Transfer Objects", located at: <a href="http://msdn.microsoft.com/en-us/magazine/ee236638.aspx" rel="nofollow">msdn.microsoft.com/en-us/magazine/…</a>http://stackoverflow.com/questions/1300245/how-can-i-substitute-a-property-during-serialization-with-datacontractserializer/1300321#1300321Comment by casperOne on How can I substitute a property during serialization with DataContractSerializer?casperOne2009-08-19T15:07:28Z2009-08-19T15:07:28Z@Mel: But aren't all the objects that are changed connected to each other in the object graph? If so, I don't see the problem with sending only the objects which have changes in the graph among a list of objects.
If you are talking about trying to send back only the parent and/or child, that's a different story, you will need a new container to send that information back in.http://stackoverflow.com/questions/1225371/reverse-sort-a-bindinglistt/1225460#1225460Comment by casperOne on Reverse sort a BindingList<T>casperOne2009-08-19T14:20:27Z2009-08-19T14:20:27Z@Eric I don't see why it <i>wouldn't</i> keep the sort order, but it's easy enough to test.http://stackoverflow.com/questions/1122162/wcf-service-access-address-aliased/1122178#1122178Comment by casperOne on WCF - service access address aliasedcasperOne2009-07-13T22:00:17Z2009-07-13T22:00:17Z@Gustavo Cavalcanti: If you have two servers, you have two deployments, so you need two config files, just make sure the one in deployment points to the other server.http://stackoverflow.com/questions/1121938/how-do-i-convert-ienumerable-to-a-custom-type-in-c/1121977#1121977Comment by casperOne on How do I convert IEnumerable to a custom type in C#?casperOne2009-07-13T20:53:16Z2009-07-13T20:53:16Z@Jonathan.Peppers: That doesn't work because he wants to cast the entire IEnumerable back to his custom collection, not the instances in the IEnumerable.http://stackoverflow.com/questions/1120008/winforms-databinding-object-containing-a-listt/1120243#1120243Comment by casperOne on Winforms Databinding object containing a List<T>casperOne2009-07-13T16:01:00Z2009-07-13T16:01:00Z@Julien Poulin: Good point, changed the code to reflect. Also, technically, it's not a leak, as it will all be cleaned up when the Roster instance is collected (a true leak would never be collected). However, it is something that should be done.http://stackoverflow.com/questions/1120008/winforms-databinding-object-containing-a-listt/1120241#1120241Comment by casperOne on Winforms Databinding object containing a List<T>casperOne2009-07-13T15:41:37Z2009-07-13T15:41:37Z@joshlrogers: Sorry for the downvote, but this isn't an issue of the type of data that is being bound to, but rather, the binding and notification not happening correctly. ITypedList doesn't add anything to the notification experience that isn't already exposed by INotifyPropertyChanged.http://stackoverflow.com/questions/1110505/how-to-direct-to-a-member-page-from-a-non-member-page-when-a-user-logs-in/1110533#1110533Comment by casperOne on How to direct to a member page from a non-member page when a user logs in?casperOne2009-07-10T17:00:48Z2009-07-10T17:00:48Z@Xaisoft: You don't have to do the URL check at all, simply check in the NonMember.aspx page if the user is authenticated. If they are, issue a redirect to the Member page. No URL checking is needed, so the live/test server issue is moot.http://stackoverflow.com/questions/1110505/how-to-direct-to-a-member-page-from-a-non-member-page-when-a-user-logs-in/1110533#1110533Comment by casperOne on How to direct to a member page from a non-member page when a user logs in?casperOne2009-07-10T16:45:43Z2009-07-10T16:45:43Z@Xaisoft: I don't see how it matters, since you don't need to check the URL at all given my response.http://stackoverflow.com/questions/1105789/some-problem-with-wpf-databinding-but-you-have-to-guess-what-kind/1105805#1105805Comment by casperOne on Some Problem with WPF Databinding but You Have to Guess What KindcasperOne2009-07-09T20:03:20Z2009-07-09T20:03:20Z@Dan: You could, but if it's not in the XAML then you aren't going to be able to bind to the value.
It also implies that your design is a little unclean, in that you don't have this property exposed (and you should have it exposed separately from the data that the header is for).http://stackoverflow.com/questions/1105839/mfc-getwindowrect-usage/1105862#1105862Comment by casperOne on MFC: GetWindowRect usagecasperOne2009-07-09T20:01:21Z2009-07-09T20:01:21ZWhy wouldn't you know this? It is the length of the structure in bytes, which you can get by using sizeof(wp) where wp is the WINDOWPLACEMENT structure variable.http://stackoverflow.com/questions/1098254/using-openid-with-a-webservice-best-way-to-authenticate/1098278#1098278Comment by casperOne on Using OpenID with a WebService: Best way to authenticate?casperOne2009-07-08T14:08:29Z2009-07-08T14:08:29Z@John Saunders: I'm referring Open ID vs OAuth, not really ASMX vs WS-* web services. Open ID isn't really meant for use with API's, whereas OAuth is.http://stackoverflow.com/questions/1060082/send-outlook-appointment-through-asp-net-error-hresult-0x80004004/1060150#1060150Comment by casperOne on Send outlook appointment through asp.net error HRESULT: 0x80004004casperOne2009-06-29T20:33:33Z2009-06-29T20:33:33Z@tom: Well, this is only an email with some extra headers attached. Send one to yourself and take a look at the headers that are in the email, and then duplicate them appropriately.http://stackoverflow.com/questions/1059969/when-using-linqtosql-and-inner-joining-can-you-return-only-a-subset-of-columns/1060024#1060024Comment by casperOne on When using linqtosql, and inner joining, can you return only a subset of columns?casperOne2009-06-29T19:37:37Z2009-06-29T19:37:37Z@Blankman: I'm not that familiar with NHibernate, so I can't say for sure.