これについては行くと、それはあなたに少し依存してどのように行うには、いくつかの方法があります個人的な嗜好、潜在的なパフォーマンス目標
照会されたすべての型を表す合併クラスを作成します。私がStatusUpdateEntryとNotificationEntryを持っていたら、各プロパティを単一のクラスにマージするだけです。シリアライザは に自動的に正しいプロパティを入力し、他のものはnull(またはデフォルト)のままにします。エンティティに「タイプ」プロパティ(計算された、またはストレージに設定されている)も置くと、そのタイプを簡単に切り替えることができます。私はいつもテーブルエンティティからあなた自身のタイプにマッピングすることをお勧めしますので、これもうまくいきます(クラスはDTOにのみ使用されます)。
例:
[DataServiceKey("PartitionKey", "RowKey")]
public class NoticeStatusUpdateEntry
{
public string PartitionKey { get; set; }
public string RowKey { get; set; }
public string NoticeProperty { get; set; }
public string StatusUpdateProperty { get; set; }
public string Type
{
get
{
return String.IsNullOrEmpty(this.StatusUpdateProperty) ? "Notice" : "StatusUpate";
}
}
}
- 上書きシリアライゼーションプロセス。 ReadingEntityイベントをフックすることで、これを自分で行うことができます。生のXMLを提供し、必要に応じてシリアライズすることができます。 Jai HaridasとPablo Castroは、あなたがタイプ(以下に含まれています)を知らないときにエンティティを読むためのいくつかのサンプルコードを与えました。あなたがそれについて知っている特定のタイプを読むためにそれを適応させることができます。
両方のアプローチの欠点は、場合によっては必要以上に多くのデータを取得するということです。あるタイプのクエリを他のタイプと比べてどれくらいクエリしたいのかを判断する必要があります。テーブルストレージでの投影を使用することができますので、ワイヤフォーマットのサイズを縮小し、大きなエンティティや多くのエンティティを返すときに実際に高速化できます。単一の型だけを照会する必要があった場合は、RowKeyまたはPartitionKeyの一部を使用して型を指定します。これにより、一度に1つの型のみを照会できます(ただし、プロパティを使用できますがPKやRKと同じように照会の目的では効率的ではありません)。
編集:Lucifureが指摘したように、もう1つの大きな選択肢は、その周りをデザインすることです。複数のテーブルを使用したり、並行してクエリを実行したりすることができます。タイムアウトやエラー処理の複雑さを踏まえて、それを交換する必要がありますが、必要に応じて実行可能でよくあるオプションです。一般的なエンティティの読み込み
:
[DataServiceKey("PartitionKey", "RowKey")]
public class GenericEntity
{
public string PartitionKey { get; set; }
public string RowKey { get; set; }
Dictionary<string, object> properties = new Dictionary<string, object>();
internal object this[string key]
{
get
{
return this.properties[key];
}
set
{
this.properties[key] = value;
}
}
public override string ToString()
{
// TODO: append each property
return "";
}
}
void TestGenericTable()
{
var ctx = CustomerDataContext.GetDataServiceContext();
ctx.IgnoreMissingProperties = true;
ctx.ReadingEntity += new EventHandler<ReadingWritingEntityEventArgs>(OnReadingEntity);
var customers = from o in ctx.CreateQuery<GenericTable>(CustomerDataContext.CustomersTableName) select o;
Console.WriteLine("Rows from '{0}'", CustomerDataContext.CustomersTableName);
foreach (GenericEntity entity in customers)
{
Console.WriteLine(entity.ToString());
}
}
// Credit goes to Pablo from ADO.NET Data Service team
public void OnReadingEntity(object sender, ReadingWritingEntityEventArgs args)
{
// TODO: Make these statics
XNamespace AtomNamespace = "http://www.w3.org/2005/Atom";
XNamespace AstoriaDataNamespace = "http://schemas.microsoft.com/ado/2007/08/dataservices";
XNamespace AstoriaMetadataNamespace = "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata";
GenericEntity entity = args.Entity as GenericEntity;
if (entity == null)
{
return;
}
// read each property, type and value in the payload
var properties = args.Entity.GetType().GetProperties();
var q = from p in args.Data.Element(AtomNamespace + "content")
.Element(AstoriaMetadataNamespace + "properties")
.Elements()
where properties.All(pp => pp.Name != p.Name.LocalName)
select new
{
Name = p.Name.LocalName,
IsNull = string.Equals("true", p.Attribute(AstoriaMetadataNamespace + "null") == null ? null : p.Attribute(AstoriaMetadataNamespace + "null").Value, StringComparison.OrdinalIgnoreCase),
TypeName = p.Attribute(AstoriaMetadataNamespace + "type") == null ? null : p.Attribute(AstoriaMetadataNamespace + "type").Value,
p.Value
};
foreach (var dp in q)
{
entity[dp.Name] = GetTypedEdmValue(dp.TypeName, dp.Value, dp.IsNull);
}
}
private static object GetTypedEdmValue(string type, string value, bool isnull)
{
if (isnull) return null;
if (string.IsNullOrEmpty(type)) return value;
switch (type)
{
case "Edm.String": return value;
case "Edm.Byte": return Convert.ChangeType(value, typeof(byte));
case "Edm.SByte": return Convert.ChangeType(value, typeof(sbyte));
case "Edm.Int16": return Convert.ChangeType(value, typeof(short));
case "Edm.Int32": return Convert.ChangeType(value, typeof(int));
case "Edm.Int64": return Convert.ChangeType(value, typeof(long));
case "Edm.Double": return Convert.ChangeType(value, typeof(double));
case "Edm.Single": return Convert.ChangeType(value, typeof(float));
case "Edm.Boolean": return Convert.ChangeType(value, typeof(bool));
case "Edm.Decimal": return Convert.ChangeType(value, typeof(decimal));
case "Edm.DateTime": return XmlConvert.ToDateTime(value, XmlDateTimeSerializationMode.RoundtripKind);
case "Edm.Binary": return Convert.FromBase64String(value);
case "Edm.Guid": return new Guid(value);
default: throw new NotSupportedException("Not supported type " + type);
}
}
これは非常に古い答えであることを人々が理解してくれることを願っています。汎用または動的エンティティは、ストレージSDKで直接サポートされています。 – dunnry