Tagged Questions
The magic-string tag has no wiki summary.
6
votes
2answers
734 views
Using a lambda expression to avoid using a “magic string” to specify a property
I am writing a service to take a collection of objects of a particular type and output its primitive, string, and DateTime types to a string in CSV Format. I have both of the below statements working. ...
6
votes
2answers
218 views
Decouple the screens without magic strings
My WPF project will be organised like this :
Screens
Group1
Screen1
View.xaml
ViewModel.cs
Group2
Screen2
View.xaml
ViewModel.cs
To show the ...
5
votes
1answer
160 views
How can I remove magic strings from custom model binders?
I've written a couple of custom model binders now, and have realised that I've fallen into the trap of relying on magic strings, e.g.:
if ...
5
votes
6answers
387 views
.Net - Strategies to avoid magic string
In the code where I work, we got many think like that :
if (user.HasRight("Profile.View")) {}
So, there is many place where we pass a string as parameter to see if the user have a specific right. I ...
5
votes
3answers
176 views
An “elegant” way of identifying a field?
I'm writing a system that underlies programmer applications and that needs to detect their access to certain data. I can mostly do so with properties, like this:
public class NiceClass {
public ...
3
votes
2answers
676 views
Getting magic strings out of QueryOver (or Fluent NHibernate perhaps)?
One of the many reason to use FluentNHibernate, the new QueryOver API, and the new Linq provider are all because they eliminate "magic string," or strings representing properties or other things that ...
3
votes
1answer
696 views
ASP.net MVC Action URLs with lambda expression
I'm sure I have seen this syntax
<%= Url.Action((MyController c) => c.MyMethod("a")) %>
or something like it as a way to generate action URLs in ASP.net MVCs without magic strings. ...
2
votes
3answers
63 views
How do I avoid magic strings (PHP MVC Frameworks)
I want to use a MVC-framework together with PHP to make a nice separation between code and presentation. I've currently started to look at CakePHP. It looks nice, but whats about all those magic ...
2
votes
3answers
166 views
Magic strings in ASP.NET MVC
I have a background in desktop software development and am getting started with learning ASP.NET MVC.
In my default HomeController I have the Index action which has code that looks like this:
if ...
2
votes
3answers
384 views
ActionScript 3 object's property name to string?
I want to eliminate usage of magic strings in these:
BindingUtils.bindProperty(obj1, "propertyName", obj2, ["childObj", "anotherProperty"]);
or
var ddl:DropDownList = new DropDownList();
...
1
vote
1answer
93 views
Is there a built in way to avoid magic strings with the Entity Framework's Include()?
Ok, I've got an entity framework query where I use Include to tell it I want a related object loaded:
var employees = _entities.Employees.Include("Manager").ToList()
By using include I avoid ...