Tagged Questions
The columnattribute tag has no wiki summary.
2
votes
1answer
44 views
Getting property value based on its column attribute value
List<MyModel1> myModel1 = new List<MyModel1>();
MyUserModel myUserModel = new MyUserModel();
List<MyModel2> myModel2 = new ...
1
vote
2answers
273 views
Do Buddy Classes only work for DataAnnotations?
Do buddy classes only work for dataannotations, or for any attribute? I've been trying to attach a ColumnAttribute to a field in my buddy class, but it appears that it doesn't get processed in the ...
1
vote
1answer
292 views
Mapping a URI to String-field in LINQ-to-SQL
I'm trying to store a URI as a string in a database, using LINQ.
[Column(Name = "Url", DbType = "nvarchar(255)")]
public Uri Url
{
get
{
return new Uri(_url);
}
set
{
...
1
vote
1answer
581 views
How do I get the ColumnAttributes from a Linq.Table<TEntity>?
I'm trying to return attributes of columns from my DataContext.
How can I pull out the ColumnAttribute meta data?
public class MyDataContext : DataContext
{
public Table<User> User;
...
0
votes
1answer
102 views
Linq To SQL context update - persist attibute parameter
Whenever a Linq data context is updated, all manually set attribute parameters are lost. I wonder if there is a way to persist them somehow? For instance, we need to persist an Auto Generated Value ...