Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
1k views

C# - How can I set the value of auto property backing fields in a struct constructor?

Given a struct like this: public struct SomeStruct { public SomeStruct(String stringProperty, Int32 intProperty) { this.StringProperty = stringProperty; this.IntProperty = ...
2
votes
4answers
91 views

C# style: May properties be grouped with their backing fields?

I like to organize simple properties like this: private int foo; public int Foo { get { return foo; } set { // validate value foo = value; } } I've been playing ...
2
votes
2answers
308 views

How do you expose a dependency property of a private, internal object via the interface of the object that contains it?

We have a custom panel class that animates its children via an internal DoubleAnimation object. However, we want to expose the animation's Duration dependency property as a public property of our ...
2
votes
3answers
250 views

Is there a performance difference between properties vs. backing fields in read/write operations?

When working within a class on its own fields and properties, I typically only use the property when it performs some function (like limiting a value or validating or whatever). Otherwise I prefer to ...
1
vote
2answers
282 views

How to access the backing field of a base class using fluent nhibernate?

How do i set the Access Strategy in the mapping class to point to the base _photos field? public class Content { private IList<Photo> _photos; public Content() { _photos = new ...
0
votes
1answer
23 views

how do you name (and map) a backing property?

In a few cases, I have a property that needs a "backing property" for practical reasons. For example, I have one type with a Name property - there is no transformation of the value happening on ...
0
votes
1answer
57 views

nhibernate collection query with private backing field

I have a mant-to-many relationship modeled in the database (with a bridge table) between Student and Professor (_students_selected) , in my entites i have modeled it as a one-to-many relationship i.e. ...
0
votes
1answer
133 views

Fluent NHibernate: How do you change the underlying sql type for an automapped collection of strings?

I have a class: public class ParentClass { //other stuff IList<string> ChildPages } When 'IList<string> ChildPages' gets automapped by Fluent NHibernate a 'ChildPages' join ...
0
votes
1answer
133 views

What is the use case for Access.BackingField in Fluent NHibernate?

The documentation for Access.BackingField() indicates that this: Sets the access-strategy to use the backing-field of an auto-property. I understand that auto-properties get compiled with ...