8
對於這個表:使用DataContext.ExecuteQuery時,LINQ to SQL是否可以填充非ColumnAttribute標記的屬性?
CREATE TABLE [Comments]
(
[Id] [int] IDENTITY(1, 1) NOT NULL,
[Text] [nvarchar](600) NOT NULL
)
有了這個模型類:
var comments = db.ExecuteQuery<Comment>("select Id, [Text], 'hello' [ArbitraryText] from Comments");
它:
[Table(Name="Comments")]
public class Comment
{
[Column(AutoSync = AutoSync.OnInsert, DbType = "Int NOT NULL IDENTITY", IsPrimaryKey = true, IsDbGenerated = true)]
public int Id { get; set; }
[Column(DbType = "NVarChar(600) NOT NULL", CanBeNull = false)]
public string Text { get; set; }
public string ArbitraryText { get; set; }
}
是否有可能爲一個DataContext使用ExecuteQuery
方法時填寫ArbitraryText
財產似乎實體映射算法忽略任何未標記爲ColumnAttribute
的屬性,但是有沒有另一種方法這樣做?
我寧願不必自己做映射,但這看起來像我唯一的選擇。
編輯:什麼是惱人的是,DataContext.ExecuteQuery功能會從查詢填充 POCO對象:
public class PlainOldCSharpObject
{
public int Id { get; set; }
public string Text { get; set; }
public string ArbitraryText { get; set; }
}
...
// DataContext correctly fills these objects
var pocos = db.ExecuteQuery<PlainOldCSharpObject>("select Id, [Text]...
所以我目前的解決方案是讓我的LINQ映射對象的內部類保存我的聚合查詢返回的額外數據。這是次優的,因爲有些屬性是重複的(例如,Id和Text)。
這是一個非常好的主意!然而,我們非常努力地沒有任何存儲過程,因爲維護它們是一個總PITA。它不是LINQ-only就是參數化的SQL(這裏就是這種情況)。我只是不理解DataContext如何在沒有System.Data.Linq.Mappings屬性的對象上工作,但不能用於映射對象。謝謝你的回答! +1 – 2009-04-22 03:09:51