本文整理汇总了C#中NHibernate.SqlCommand.SqlSelectBuilder.SetComment方法的典型用法代码示例。如果您正苦于以下问题:C# SqlSelectBuilder.SetComment方法的具体用法?C# SqlSelectBuilder.SetComment怎么用?C# SqlSelectBuilder.SetComment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NHibernate.SqlCommand.SqlSelectBuilder
的用法示例。
在下文中一共展示了SqlSelectBuilder.SetComment方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitStatementString
private void InitStatementString(SqlString projection,SqlString condition,
string orderBy,string groupBy,LockMode lockMode)
{
int joins = CountEntityPersisters(associations);
Suffixes = BasicLoader.GenerateSuffixes(joins + 1);
JoinFragment ojf = MergeOuterJoins(associations);
SqlString selectClause = projection
??
new SqlString(persister.SelectFragment(alias, Suffixes[joins]) + SelectString(associations));
SqlSelectBuilder select = new SqlSelectBuilder(Factory)
.SetLockMode(lockMode)
.SetSelectClause(selectClause)
.SetFromClause(Dialect.AppendLockHint(lockMode, persister.FromTableFragment(alias)) +persister.FromJoinFragment(alias, true, true))
.SetWhereClause(condition)
.SetOuterJoins(ojf.ToFromFragmentString,ojf.ToWhereFragmentString + WhereFragment)
.SetOrderByClause(OrderBy(associations, orderBy))
.SetGroupByClause(groupBy);
if (Factory.Settings.IsCommentsEnabled)
select.SetComment(Comment);
SqlString = select.ToSqlString();
}
示例2: InitStatementString
private void InitStatementString(IOuterJoinLoadable elementPersister, string alias, int batchSize, SqlString subquery)
{
int joins = CountEntityPersisters(associations);
Suffixes = BasicLoader.GenerateSuffixes(joins + 1);
int collectionJoins = CountCollectionPersisters(associations) + 1;
CollectionSuffixes = BasicLoader.GenerateSuffixes(joins + 1, collectionJoins);
SqlStringBuilder whereString = WhereString(alias, oneToManyPersister.KeyColumnNames, subquery, batchSize);
string filter = oneToManyPersister.FilterFragment(alias, EnabledFilters);
whereString.Insert(0, StringHelper.MoveAndToBeginning(filter));
JoinFragment ojf = MergeOuterJoins(associations);
SqlSelectBuilder select =
new SqlSelectBuilder(Factory).SetSelectClause(
oneToManyPersister.SelectFragment(null, null, alias, Suffixes[joins], CollectionSuffixes[0], true)
+ SelectString(associations)).SetFromClause(elementPersister.FromTableFragment(alias)
+ elementPersister.FromJoinFragment(alias, true, true)).SetWhereClause(
whereString.ToSqlString()).SetOuterJoins(ojf.ToFromFragmentString,
ojf.ToWhereFragmentString
+ elementPersister.WhereJoinFragment(alias, true, true));
select.SetOrderByClause(OrderBy(associations, oneToManyPersister.GetSQLOrderByString(alias)));
if (Factory.Settings.IsCommentsEnabled)
{
select.SetComment("load one-to-many " + oneToManyPersister.Role);
}
SqlString = select.ToSqlString();
}
示例3: InitStatementString
private void InitStatementString(string alias, int batchSize, SqlString subquery)
{
int joins = CountEntityPersisters(associations);
int collectionJoins = CountCollectionPersisters(associations) + 1;
Suffixes = BasicLoader.GenerateSuffixes(joins);
CollectionSuffixes = BasicLoader.GenerateSuffixes(joins, collectionJoins);
SqlStringBuilder whereString = WhereString(alias, collectionPersister.KeyColumnNames, subquery, batchSize);
string manyToManyOrderBy = string.Empty;
string filter = collectionPersister.FilterFragment(alias, EnabledFilters);
if (collectionPersister.IsManyToMany)
{
// from the collection of associations, locate OJA for the
// ManyToOne corresponding to this persister to fully
// define the many-to-many; we need that OJA so that we can
// use its alias here
// TODO : is there a better way here?
IAssociationType associationType = (IAssociationType)collectionPersister.ElementType;
foreach (OuterJoinableAssociation oja in associations)
{
if (oja.JoinableType == associationType)
{
// we found it
filter += collectionPersister.GetManyToManyFilterFragment(oja.RHSAlias, EnabledFilters);
manyToManyOrderBy += collectionPersister.GetManyToManyOrderByString(oja.RHSAlias);
}
}
}
whereString.Insert(0, StringHelper.MoveAndToBeginning(filter));
JoinFragment ojf = MergeOuterJoins(associations);
SqlSelectBuilder select =
new SqlSelectBuilder(Factory)
.SetSelectClause(collectionPersister.SelectFragment(alias, CollectionSuffixes[0])
+ SelectString(associations))
.SetFromClause(collectionPersister.TableName, alias)
.SetWhereClause(whereString.ToSqlString())
.SetOuterJoins(ojf.ToFromFragmentString, ojf.ToWhereFragmentString);
select.SetOrderByClause(OrderBy(associations, MergeOrderings(collectionPersister.GetSQLOrderByString(alias), manyToManyOrderBy)));
if (Factory.Settings.IsCommentsEnabled)
select.SetComment("load collection " + collectionPersister.Role);
SqlString = select.ToSqlString();
}
示例4: GetNaturalIdentifierSnapshot
public virtual object[] GetNaturalIdentifierSnapshot(object id, ISessionImplementor session)
{
if (!HasNaturalIdentifier)
{
throw new MappingException("persistent class did not define a natural-id : " + MessageHelper.InfoString(this));
}
if (log.IsDebugEnabled)
{
log.Debug("Getting current natural-id snapshot state for: " + MessageHelper.InfoString(this, id, Factory));
}
int[] naturalIdPropertyIndexes = NaturalIdentifierProperties;
int naturalIdPropertyCount = naturalIdPropertyIndexes.Length;
bool[] naturalIdMarkers = new bool[PropertySpan];
IType[] extractionTypes = new IType[naturalIdPropertyCount];
for (int i = 0; i < naturalIdPropertyCount; i++)
{
extractionTypes[i] = PropertyTypes[naturalIdPropertyIndexes[i]];
naturalIdMarkers[naturalIdPropertyIndexes[i]] = true;
}
///////////////////////////////////////////////////////////////////////
// TODO : look at perhaps caching this...
SqlSelectBuilder select = new SqlSelectBuilder(Factory);
if (Factory.Settings.IsCommentsEnabled)
{
select.SetComment("get current natural-id state " + EntityName);
}
select.SetSelectClause(ConcretePropertySelectFragmentSansLeadingComma(RootAlias, naturalIdMarkers));
select.SetFromClause(FromTableFragment(RootAlias) + FromJoinFragment(RootAlias, true, false));
string[] aliasedIdColumns = StringHelper.Qualify(RootAlias, IdentifierColumnNames);
SqlString whereClause = new SqlStringBuilder()
.Add(StringHelper.Join(new SqlString("=", Parameter.Placeholder, " and "), aliasedIdColumns))
.Add("=").AddParameter()
.Add(WhereJoinFragment(RootAlias, true, false))
.ToSqlString();
SqlString sql = select.SetOuterJoins(SqlString.Empty, SqlString.Empty).SetWhereClause(whereClause).ToStatementString();
///////////////////////////////////////////////////////////////////////
object[] snapshot = new object[naturalIdPropertyCount];
using (new SessionIdLoggingContext(session.SessionId))
try
{
IDbCommand ps = session.Batcher.PrepareCommand(CommandType.Text, sql, IdentifierType.SqlTypes(factory));
IDataReader rs = null;
try
{
IdentifierType.NullSafeSet(ps, id, 0, session);
rs = session.Batcher.ExecuteReader(ps);
//if there is no resulting row, return null
if (!rs.Read())
{
return null;
}
for (int i = 0; i < naturalIdPropertyCount; i++)
{
snapshot[i] =
extractionTypes[i].Hydrate(rs, GetPropertyAliases(string.Empty, naturalIdPropertyIndexes[i]), session, null);
if (extractionTypes[i].IsEntityType)
{
snapshot[i] = extractionTypes[i].ResolveIdentifier(snapshot[i], session, null);
}
}
return snapshot;
}
finally
{
session.Batcher.CloseCommand(ps, rs);
}
}
catch (DbException sqle)
{
var exceptionContext = new AdoExceptionContextInfo
{
SqlException = sqle,
Message = "could not retrieve snapshot: " + MessageHelper.InfoString(this, id, Factory),
Sql = sql.ToString(),
EntityName = EntityName,
EntityId = id
};
throw ADOExceptionHelper.Convert(Factory.SQLExceptionConverter, exceptionContext);
}
}
示例5: RenderSelect
protected SqlString RenderSelect(int[] tableNumbers, int[] columnNumbers, int[] formulaNumbers)
{
Array.Sort(tableNumbers); //get 'em in the right order (not that it really matters)
//render the where and from parts
int drivingTable = tableNumbers[0];
string drivingAlias = GenerateTableAlias(RootAlias, drivingTable); //we *could* regenerate this inside each called method!
SqlString where = CreateWhereByKey(drivingTable, drivingAlias);
string from = CreateFrom(drivingTable, drivingAlias);
//now render the joins
JoinFragment jf = CreateJoin(tableNumbers, drivingAlias);
//now render the select clause
SelectFragment selectFragment = CreateSelect(columnNumbers, formulaNumbers);
//now tie it all together
SqlSelectBuilder select = new SqlSelectBuilder(Factory);
select.SetSelectClause(selectFragment.ToFragmentString().Substring(2));
select.SetFromClause(from);
select.SetWhereClause(where);
select.SetOuterJoins(jf.ToFromFragmentString, jf.ToWhereFragmentString);
if (Factory.Settings.IsCommentsEnabled)
{
select.SetComment("sequential select " + EntityName);
}
return select.ToSqlString();
}
示例6: GenerateSnapshotSelectString
protected virtual SqlString GenerateSnapshotSelectString()
{
//TODO: should we use SELECT .. FOR UPDATE?
SqlSelectBuilder select = new SqlSelectBuilder(Factory);
if (Factory.Settings.IsCommentsEnabled)
{
select.SetComment("get current state " + EntityName);
}
string[] aliasedIdColumns = StringHelper.Qualify(RootAlias, IdentifierColumnNames);
string selectClause = StringHelper.Join(StringHelper.CommaSpace, aliasedIdColumns)
+ ConcretePropertySelectFragment(RootAlias, PropertyUpdateability);
SqlString fromClause = new SqlString(FromTableFragment(RootAlias)) +
FromJoinFragment(RootAlias, true, false);
SqlString joiner = new SqlString("=", Parameter.Placeholder, " and ");
SqlStringBuilder whereClauseBuilder = new SqlStringBuilder()
.Add(StringHelper.Join(joiner, aliasedIdColumns))
.Add("=")
.AddParameter()
.Add(WhereJoinFragment(RootAlias, true, false));
// H3.2 the Snapshot is what we found in DB without take care on version
//if (IsVersioned)
//{
// whereClauseBuilder.Add(" and ")
// .Add(VersionColumnName)
// .Add("=")
// .AddParameter();
//}
return select.SetSelectClause(selectClause)
.SetFromClause(fromClause)
.SetOuterJoins(SqlString.Empty, SqlString.Empty)
.SetWhereClause(whereClauseBuilder.ToSqlString())
.ToSqlString();
}
示例7: GenerateGeneratedValuesSelectString
private SqlString GenerateGeneratedValuesSelectString(ValueInclusion[] inclusions)
{
SqlSelectBuilder select = new SqlSelectBuilder(Factory);
if (Factory.Settings.IsCommentsEnabled)
{
select.SetComment("get generated state " + EntityName);
}
string[] aliasedIdColumns = StringHelper.Qualify(RootAlias, IdentifierColumnNames);
// Here we render the select column list based on the properties defined as being generated.
// For partial component generation, we currently just re-select the whole component
// rather than trying to handle the individual generated portions.
string selectClause = ConcretePropertySelectFragment(RootAlias, inclusions);
selectClause = selectClause.Substring(2);
string fromClause = FromTableFragment(RootAlias) + FromJoinFragment(RootAlias, true, false);
SqlString whereClause = new SqlStringBuilder()
.Add(StringHelper.Join(new SqlString("=", Parameter.Placeholder, " and "), aliasedIdColumns))
.Add("=").AddParameter()
.Add(WhereJoinFragment(RootAlias, true, false))
.ToSqlString();
return select.SetSelectClause(selectClause)
.SetFromClause(fromClause)
.SetOuterJoins(SqlString.Empty, SqlString.Empty)
.SetWhereClause(whereClause)
.ToSqlString();
}