爲了定義一個包含整數的維度的字段,用於使用域模型庫以下面的格式定義。 class Sample
include DomainModel
field :numbers, :type => Integer, :collection => true
end
以類似的方式,我怎樣才能使用域模型定義一個二維數組?
有一個模型類Review。使用StoreModel和Menu模型。 在StoreModel.cs [Table ("Stores")]
public class StoreModel
{
[Key]
public int Id { get; set; }
public string StoreName { get; set; }
public stri
假設我有一個Cat域,如下所示。 class Cat{
String name
Integer age
}
現在我想添加一個新的功能,將標籤分配給貓。 現在我看到兩個選項來實現這一點。 選項1 屬性添加到貓域 class Cat{
String name
Integer age
String tag
}
選項2 創建新表 class CatTa
我有我使用映射實體的接口對象域對象 public interface IDataEntity<in T1, out T2> where T1 : new() where T2 : new()
{
T2 Map(T1 obj);
}
要實現 public class MyEntityObj : IDataEntity<MyEntityObj, MyDomainObj>
{