本文整理汇总了C#中Arebis类的典型用法代码示例。如果您正苦于以下问题:C# Arebis类的具体用法?C# Arebis怎么用?C# Arebis使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Arebis类属于命名空间,在下文中一共展示了Arebis类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RightsClass
public RightsClass(Arebis.CodeGeneration.IGenerationHost _host, IZetboxContext ctx, string className)
: base(_host)
{
this.ctx = ctx;
this.className = className;
}
示例2: ClassesHbm
public ClassesHbm(Arebis.CodeGeneration.IGenerationHost _host, IZetboxContext ctx, string extraSuffix)
: base(_host)
{
this.ctx = ctx;
this.extraSuffix = extraSuffix;
}
示例3: Template
public Template(Arebis.CodeGeneration.IGenerationHost _host, IZetboxContext ctx, Enumeration e)
: base(_host)
{
this.ctx = ctx;
this.e = e;
}
示例4: ModelMslEntityTypeMapping
public ModelMslEntityTypeMapping(Arebis.CodeGeneration.IGenerationHost _host, IZetboxContext ctx, ObjectClass cls)
: base(_host)
{
this.ctx = ctx;
this.cls = cls;
}
示例5: ReloadReferences
public ReloadReferences(Arebis.CodeGeneration.IGenerationHost _host, IZetboxContext ctx, DataType cls)
: base(_host)
{
this.ctx = ctx;
this.cls = cls;
}
示例6: OnPropertyChange
public OnPropertyChange(Arebis.CodeGeneration.IGenerationHost _host, IZetboxContext ctx, DataType dt)
: base(_host)
{
this.ctx = ctx;
this.dt = dt;
}
示例7: ModelMslEntityTypeMappingScalarProperty
public ModelMslEntityTypeMappingScalarProperty(Arebis.CodeGeneration.IGenerationHost _host, IZetboxContext ctx, Property prop, string parentName)
: base(_host)
{
this.ctx = ctx;
this.prop = prop;
this.parentName = parentName;
}
示例8: ObjectReferencePropertyTemplate
public ObjectReferencePropertyTemplate(Arebis.CodeGeneration.IGenerationHost _host, IZetboxContext ctx, Serialization.SerializationMembersList serializationList, string moduleNamespace, string ownInterface, string name, string implName, string eventName, string fkBackingName, string fkGuidBackingName, string referencedInterface, string referencedImplementation, string associationName, string targetRoleName, string positionPropertyName, string inverseNavigatorName, bool inverseNavigatorIsList, bool eagerLoading, bool relDataTypeExportable, bool callGetterSetterEvents, bool isCalculated, bool disableExport)
: base(_host)
{
this.ctx = ctx;
this.serializationList = serializationList;
this.moduleNamespace = moduleNamespace;
this.ownInterface = ownInterface;
this.name = name;
this.implName = implName;
this.eventName = eventName;
this.fkBackingName = fkBackingName;
this.fkGuidBackingName = fkGuidBackingName;
this.referencedInterface = referencedInterface;
this.referencedImplementation = referencedImplementation;
this.associationName = associationName;
this.targetRoleName = targetRoleName;
this.positionPropertyName = positionPropertyName;
this.inverseNavigatorName = inverseNavigatorName;
this.inverseNavigatorIsList = inverseNavigatorIsList;
this.eagerLoading = eagerLoading;
this.relDataTypeExportable = relDataTypeExportable;
this.callGetterSetterEvents = callGetterSetterEvents;
this.isCalculated = isCalculated;
this.disableExport = disableExport;
}
示例9: SimplePropertyListTemplate
public SimplePropertyListTemplate(Arebis.CodeGeneration.IGenerationHost _host, IZetboxContext ctx, Property prop)
: base(_host)
{
this.ctx = ctx;
this.prop = prop;
}
示例10: DocumentInfo
public DocumentInfo(Arebis.CodeGeneration.IGenerationHost _host, string Subject, string Author)
: base(_host)
{
this.Subject = Subject;
this.Author = Author;
}
示例11: GetDeletedRelatives
public GetDeletedRelatives(Arebis.CodeGeneration.IGenerationHost _host, string aName, string bName)
: base(_host)
{
this.aName = aName;
this.bName = bName;
}
示例12: Call
public static new void Call(Arebis.CodeGeneration.IGenerationHost host, IZetboxContext ctx, Templates.Serialization.SerializationMembersList serializationList, Property prop)
{
if (host == null) { throw new ArgumentNullException("host"); }
host.CallTemplate("Properties.NotifyingEnumProperty",
ctx, serializationList, prop);
}
示例13: Call
private static void Call(Arebis.CodeGeneration.IGenerationHost host,
IZetboxContext ctx,
Serialization.SerializationMembersList serializationList,
Property prop, bool hasPersistentOrder, bool isList,
string collectionWrapperClass,
string listWrapperClass)
{
if (prop == null) { throw new ArgumentNullException("prop"); }
if (!isList) { throw new ArgumentOutOfRangeException("prop", "prop must be a List-valued property"); }
string name = prop.Name;
string backingName = "_" + name;
string backingCollectionType = (hasPersistentOrder ? listWrapperClass : collectionWrapperClass);
string exposedCollectionInterface = hasPersistentOrder ? "IList" : "ICollection";
string thisInterface = prop.ObjectClass.Name;
string referencedType = prop.GetElementTypeString();
string referencedCollectionEntry = prop.GetCollectionEntryFullName();
string referencedCollectionEntryImpl = referencedCollectionEntry + host.Settings["extrasuffix"] + Zetbox.API.Helper.ImplementationSuffix;
string providerCollectionType = "ObservableCollection<" + referencedCollectionEntryImpl + ">";
string underlyingCollectionName = "_" + name + "Collection";
string moduleNamespace = prop.Module.Namespace;
Call(
host, ctx, serializationList,
name, backingName, backingCollectionType, exposedCollectionInterface,
thisInterface, referencedType,
referencedCollectionEntry, referencedCollectionEntryImpl,
providerCollectionType, underlyingCollectionName, !hasPersistentOrder,
moduleNamespace,
prop.DisableExport == true);
}
示例14: Call
public static void Call(Arebis.CodeGeneration.IGenerationHost host,
IZetboxContext ctx,
Templates.Serialization.SerializationMembersList serializationList,
Relation rel, RelationEndRole endRole, string backingCollectionType)
{
if (host == null) { throw new ArgumentNullException("host"); }
if (rel == null) { throw new ArgumentNullException("rel"); }
RelationEnd relEnd = rel.GetEndFromRole(endRole);
RelationEnd otherEnd = rel.GetOtherEnd(relEnd);
string name = relEnd.Navigator.Name;
string exposedCollectionInterface = rel.NeedsPositionStorage(otherEnd.GetRole()) ? "IList" : "ICollection";
string referencedInterface = otherEnd.Type.GetDataTypeString();
string backingName = "_" + name;
string aSideType = rel.A.Type.GetDataTypeString();
string bSideType = rel.B.Type.GetDataTypeString();
string entryType = rel.GetRelationFullName() + host.Settings["extrasuffix"] + Zetbox.API.Helper.ImplementationSuffix;
string providerCollectionType = (rel.NeedsPositionStorage(otherEnd.GetRole()) ? "IList<" : "ICollection<")
+ entryType + ">";
bool eagerLoading = relEnd.Navigator != null && relEnd.Navigator.EagerLoading;
bool serializeRelationEntries = rel.GetRelationType() == RelationType.n_m;
string entryProxyType = entryType + "." + rel.GetRelationClassName() + "Proxy";
string inverseNavigatorName = otherEnd.Navigator != null ? otherEnd.Navigator.Name : null;
Call(host, ctx, serializationList, name, exposedCollectionInterface, referencedInterface, backingName, backingCollectionType, aSideType, bSideType, entryType, providerCollectionType, rel.ExportGuid, endRole, eagerLoading, serializeRelationEntries, entryProxyType, inverseNavigatorName);
}
示例15: Call
public static void Call(Arebis.CodeGeneration.IGenerationHost host,
IZetboxContext ctx,
Templates.Serialization.SerializationMembersList serializationList,
ObjectReferenceProperty prop)
{
if (host == null) { throw new ArgumentNullException("host"); }
if (ctx == null) { throw new ArgumentNullException("ctx"); }
if (prop == null) { throw new ArgumentNullException("prop"); }
if (!prop.IsList()) { throw new ArgumentOutOfRangeException("prop", "prop must be a List-valued property"); }
var rel = RelationExtensions.Lookup(ctx, prop);
var relEnd = rel.GetEnd(prop);
var otherEnd = rel.GetOtherEnd(relEnd);
string name = prop.Name;
// whether or not the collection will be eagerly loaded
bool eagerLoading = relEnd.Navigator != null && relEnd.Navigator.EagerLoading;
string wrapperName = "_" + name;
string wrapperClass = "OneNRelationList";
var exposedListType = otherEnd.HasPersistentOrder ? "IList" : "ICollection";
// the name of the position property
var positionPropertyName = rel.NeedsPositionStorage(otherEnd.GetRole()) ? Construct.ListPositionPropertyName(otherEnd) : String.Empty;
var otherName = otherEnd.Navigator == null ? relEnd.RoleName : otherEnd.Navigator.Name;
var referencedInterface = otherEnd.Type.GetDataTypeString();
var referencedProxy = Mappings.ObjectClassHbm.GetProxyTypeReference(otherEnd.Type, host.Settings);
Call(host, ctx, serializationList, name, eagerLoading, wrapperName, wrapperClass, exposedListType, positionPropertyName, otherName, referencedInterface, referencedProxy);
}