本文整理汇总了C#中IDataContext.ExecuteQuery方法的典型用法代码示例。如果您正苦于以下问题:C# IDataContext.ExecuteQuery方法的具体用法?C# IDataContext.ExecuteQuery怎么用?C# IDataContext.ExecuteQuery使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IDataContext
的用法示例。
在下文中一共展示了IDataContext.ExecuteQuery方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ucesnikTakmicenja2
// TODO: Nije moguce izbrisati takmicara zato sto se uvek vodi kao ucesnik takmicenja II, cak i ako ne postoji
// odvojeno takmicenje II, verovatno zbog greske koja postoji u tom slucaju da kada ne postoji odvojeno
// takmicenje II svi gimnasticari se oznace kao kvalifikovani. Ispravi ovo, tj. kada ne postoji odvojeno
// takmicenje II verovatno ne bi niko trebalo da bude oznacen kao kvalifikovan.
// Druga mogucnost je da nije moguce brisati takmicara zato sto postoje njegovi rezultati u takmicenju II, cak i
// ako ne postoji odvojeno takmicenje II.
// Mozda bi najbolje bilo da se ne dozvoli brisanje takmicara koji je ucesnik takmicenja II i III (zato sam gore
// stavio da se prvo ispituje da li je gimnasticar ucesnik takmicenja II ili III)
private bool ucesnikTakmicenja2(GimnasticarUcesnik g)
{
IDataContext dataContext = null;
try
{
DataAccessProviderFactory factory = new DataAccessProviderFactory();
dataContext = factory.GetDataContext();
dataContext.BeginTransaction();
string query = @"select count(*)
from Takmicenje2 t
join t.Ucesnici u
where u.Gimnasticar.Id = :id";
IList result = dataContext.
ExecuteQuery(QueryLanguageType.HQL, query,
new string[] { "id" }, new object[] { g.Id });
return (long)result[0] > 0;
}
catch (Exception ex)
{
if (dataContext != null && dataContext.IsInTransaction)
dataContext.Rollback();
throw new InfrastructureException(
Strings.getFullDatabaseAccessExceptionMessage(ex), ex);
}
finally
{
if (dataContext != null)
dataContext.Dispose();
dataContext = null;
}
}
示例2: hasNastup
private bool hasNastup(GimnasticarUcesnik g)
{
IDataContext dataContext = null;
try
{
DataAccessProviderFactory factory = new DataAccessProviderFactory();
dataContext = factory.GetDataContext();
dataContext.BeginTransaction();
string query = @"select distinct n
from NastupNaSpravi n
where n.Gimnasticar = :gim";
IList<NastupNaSpravi> result = dataContext.
ExecuteQuery<NastupNaSpravi>(QueryLanguageType.HQL, query,
new string[] { "gim" }, new object[] { g });
return result.Count > 0;
}
catch (Exception ex)
{
if (dataContext != null && dataContext.IsInTransaction)
dataContext.Rollback();
// TODO: Izgleda da se ovaj izuzetak nigde ne hendluje.
throw new InfrastructureException(
Strings.getFullDatabaseAccessExceptionMessage(ex), ex);
}
finally
{
if (dataContext != null)
dataContext.Dispose();
dataContext = null;
}
}
示例3: hasEkipa
private bool hasEkipa(GimnasticarUcesnik g)
{
IDataContext dataContext = null;
try
{
DataAccessProviderFactory factory = new DataAccessProviderFactory();
dataContext = factory.GetDataContext();
dataContext.BeginTransaction();
string query = @"select distinct e
from Ekipa e
join e.Gimnasticari g
where g.Id = :id";
IList<Ekipa> result = dataContext.
ExecuteQuery<Ekipa>(QueryLanguageType.HQL, query,
new string[] { "id" }, new object[] { g.Id });
return result.Count > 0;
}
catch (Exception ex)
{
if (dataContext != null && dataContext.IsInTransaction)
dataContext.Rollback();
throw new InfrastructureException(
Strings.getFullDatabaseAccessExceptionMessage(ex), ex);
}
finally
{
if (dataContext != null)
dataContext.Dispose();
dataContext = null;
}
}
示例4: loadRezTakmicenja
IList<RezultatskoTakmicenje> loadRezTakmicenja(int takmicenjeId)
{
IDataContext dataContext = null;
try
{
DataAccessProviderFactory factory = new DataAccessProviderFactory();
dataContext = factory.GetDataContext();
dataContext.BeginTransaction();
string query = @"select distinct r
from RezultatskoTakmicenje r
left join fetch r.Kategorija kat
left join fetch r.TakmicenjeDescription d
left join fetch r.Propozicije p
left join fetch r.Takmicenje1 t
left join fetch t.Gimnasticari g
left join fetch t.Ekipe e
left join fetch e.Gimnasticari
left join fetch e.DrzavaUcesnik
left join fetch e.KlubUcesnik
where r.Takmicenje.Id = :takmicenjeId
order by r.RedBroj";
IList<RezultatskoTakmicenje> result = dataContext.
ExecuteQuery<RezultatskoTakmicenje>(QueryLanguageType.HQL, query,
new string[] { "takmicenjeId" },
new object[] { takmicenjeId });
return result;
}
catch (BusinessException)
{
if (dataContext != null && dataContext.IsInTransaction)
dataContext.Rollback();
throw;
}
catch (InfrastructureException)
{
if (dataContext != null && dataContext.IsInTransaction)
dataContext.Rollback();
throw;
}
catch (Exception ex)
{
if (dataContext != null && dataContext.IsInTransaction)
dataContext.Rollback();
throw new InfrastructureException(
Strings.getFullDatabaseAccessExceptionMessage(ex), ex);
}
finally
{
if (dataContext != null)
dataContext.Dispose();
dataContext = null;
}
}
示例5: loadGimnasticari
private IList<GimnasticarUcesnik> loadGimnasticari(Takmicenje tak, string kategorija)
{
IDataContext dataContext = null;
try
{
DataAccessProviderFactory factory = new DataAccessProviderFactory();
dataContext = factory.GetDataContext();
dataContext.BeginTransaction();
string query = @"select distinct g
from GimnasticarUcesnik g
left join fetch g.KlubUcesnik
left join fetch g.DrzavaUcesnik
where g.Takmicenje = :tak
and g.TakmicarskaKategorija.Naziv = :kat
order by g.Prezime, g.Ime";
IList<GimnasticarUcesnik> result = dataContext.
ExecuteQuery<GimnasticarUcesnik>(QueryLanguageType.HQL, query,
new string[] { "tak", "kat" },
new object[] { tak, kategorija });
return result;
}
catch (BusinessException)
{
if (dataContext != null && dataContext.IsInTransaction)
dataContext.Rollback();
throw;
}
catch (InfrastructureException)
{
if (dataContext != null && dataContext.IsInTransaction)
dataContext.Rollback();
throw;
}
catch (Exception ex)
{
if (dataContext != null && dataContext.IsInTransaction)
dataContext.Rollback();
throw new InfrastructureException(
Strings.getFullDatabaseAccessExceptionMessage(ex), ex);
}
finally
{
if (dataContext != null)
dataContext.Dispose();
dataContext = null;
}
}